rate/www/tsconfig.json

14 lines
280 B
JSON
Raw Permalink Normal View History

2022-09-20 13:27:52 +00:00
{
"extends": "@tsconfig/svelte/tsconfig.json",
2022-09-22 16:00:56 +00:00
"compilerOptions": {
2022-10-11 10:18:12 +00:00
"strictNullChecks": true,
2022-10-16 13:28:42 +00:00
"baseUrl": "./src",
2022-09-22 16:00:56 +00:00
"paths": {
2022-10-16 13:28:42 +00:00
"@core": ["../../core/src"]
2023-02-08 08:17:15 +00:00
},
"allowJs": true
2022-09-22 16:00:56 +00:00
},
2022-10-10 15:01:31 +00:00
"include": ["src/**/*"],
2022-10-16 13:28:42 +00:00
"exclude": ["node_modules/*", "public/*"]
2022-10-10 15:01:31 +00:00
}