coracle/tsconfig.json

14 lines
274 B
JSON
Raw Normal View History

2023-02-03 23:01:29 +00:00
{
"extends": "@tsconfig/svelte/tsconfig.json",
2023-07-20 21:25:53 +00:00
"include": ["src/**/*"],
2023-02-03 23:01:29 +00:00
"compilerOptions": {
"baseUrl": ".",
2023-07-03 14:18:51 +00:00
"paths": {
"src/*": ["src/*"]
2023-07-21 13:32:58 +00:00
},
2023-07-21 22:44:23 +00:00
"isolatedModules": true,
2023-07-21 13:32:58 +00:00
"strictPropertyInitialization": false,
"strictNullChecks": false
2023-07-20 21:25:53 +00:00
}
2023-02-03 23:01:29 +00:00
}