coracle/tsconfig.json

16 lines
326 B
JSON
Raw Permalink 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-10-12 23:16:38 +00:00
"module": "esnext",
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-12-01 19:51:43 +00:00
"noImplicitAny": false,
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
}