rate/www/tsconfig.json
2023-02-08 09:17:15 +01:00

14 lines
280 B
JSON

{
"extends": "@tsconfig/svelte/tsconfig.json",
"compilerOptions": {
"strictNullChecks": true,
"baseUrl": "./src",
"paths": {
"@core": ["../../core/src"]
},
"allowJs": true
},
"include": ["src/**/*"],
"exclude": ["node_modules/*", "public/*"]
}