diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2022-12-01 14:34:23 +0100 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2023-01-04 16:45:41 +0100 |
commit | 887c9e05de88f81ed6f0cb88bd185c05b1a22076 (patch) | |
tree | 5fdd405133148fdba12ff6ea6a8cd9e4f27007d2 /tsconfig.json | |
parent | 36b6a7c77199d17c0147fc27cd0cc54a2b7d5020 (diff) | |
download | nextcloud-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.json | 15 |
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 |