aboutsummaryrefslogtreecommitdiffstats
path: root/tsconfig.json
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@protonmail.com>2022-12-01 14:34:23 +0100
committerJohn Molakvoæ <skjnldsv@protonmail.com>2023-01-04 16:45:41 +0100
commit887c9e05de88f81ed6f0cb88bd185c05b1a22076 (patch)
tree5fdd405133148fdba12ff6ea6a8cd9e4f27007d2 /tsconfig.json
parent36b6a7c77199d17c0147fc27cd0cc54a2b7d5020 (diff)
downloadnextcloud-server-887c9e05de88f81ed6f0cb88bd185c05b1a22076.tar.gz
nextcloud-server-887c9e05de88f81ed6f0cb88bd185c05b1a22076.zip
Port Files navigation to vue
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json15
1 files changed, 9 insertions, 6 deletions
diff --git a/tsconfig.json b/tsconfig.json
index dcf7ae20ff7..8a0ceb144a9 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,16 +1,19 @@
{
"extends": "@vue/tsconfig/tsconfig.json",
- "include": ["./**/*.ts"],
+ "include": ["./apps/**/*.ts", "./core/**/*.ts"],
"compilerOptions": {
"types": ["node"],
- "allowSyntheticDefaultImports": true,
- "moduleResolution": "node",
+ "outDir": "./dist/",
"target": "ESNext",
"module": "esnext",
- "declaration": true,
- "strict": true,
+ "moduleResolution": "node",
+ // Allow ts to import js files
+ "allowJs": true,
+ "allowSyntheticDefaultImports": true,
+ "declaration": false,
"noImplicitAny": false,
- "resolveJsonModule": true
+ "resolveJsonModule": true,
+ "strict": true,
},
"ts-node": {
// these options are overrides used only by ts-node