diff options
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 |