diff options
Diffstat (limited to 'apps/frontpage/tsconfig.json')
| -rw-r--r-- | apps/frontpage/tsconfig.json | 37 |
1 files changed, 26 insertions, 11 deletions
diff --git a/apps/frontpage/tsconfig.json b/apps/frontpage/tsconfig.json index 0f47472..374cec6 100644 --- a/apps/frontpage/tsconfig.json +++ b/apps/frontpage/tsconfig.json @@ -1,13 +1,28 @@ { - "extends": "./.svelte-kit/tsconfig.json", - "compilerOptions": { - "allowJs": true, - "checkJs": true, - "esModuleInterop": true, - "forceConsistentCasingInFileNames": true, - "resolveJsonModule": true, - "skipLibCheck": true, - "sourceMap": true, - "strict": true - } + "include": [ + "./**/*.d.ts", + "./**/*.ts", + "./**/*.js", + "./**/*.svelte" + ], + "exclude": [ + "./node_modules" + ], + "extends": "./.svelte-kit/tsconfig.json", + "compilerOptions": { + "target": "esnext", + "useDefineForClassFields": true, + "module": "esnext", + "moduleResolution": "node", + "allowJs": true, + "checkJs": false, + "paths": { + "$routes/*": [ + "./src/pages/*" + ], + "$shared/*": [ + "../web-shared/src/*" + ] + } + } } |
