2022-04-11 04:58:58 +08:00
|
|
|
{
|
|
|
|
"extends": "@tsconfig/svelte/tsconfig.json",
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"useDefineForClassFields": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"baseUrl": ".",
|
2024-07-27 03:09:41 +08:00
|
|
|
"verbatimModuleSyntax": true,
|
2022-04-11 04:58:58 +08:00
|
|
|
"noUnusedLocals": false,
|
2024-07-27 03:09:41 +08:00
|
|
|
"noUncheckedIndexedAccess": true,
|
2022-04-11 04:58:58 +08:00
|
|
|
/**
|
|
|
|
* Typecheck JS in `.svelte` and `.js` files by default.
|
|
|
|
* Disable checkJs if you'd like to use dynamic types in JS.
|
|
|
|
* Note that setting allowJs false does not prevent the use
|
|
|
|
* of JS in `.svelte` files.
|
|
|
|
*/
|
2022-05-30 15:32:45 +08:00
|
|
|
"types": [],
|
2022-04-11 04:58:58 +08:00
|
|
|
"allowJs": true,
|
|
|
|
"checkJs": true,
|
|
|
|
"paths": {
|
|
|
|
"*": [
|
|
|
|
"src/*"
|
|
|
|
]
|
2024-07-27 03:09:41 +08:00
|
|
|
}
|
2022-04-11 04:58:58 +08:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/**/*.d.ts",
|
|
|
|
"src/**/*.ts",
|
2022-06-27 02:50:04 +08:00
|
|
|
"src/*.ts",
|
2022-04-11 04:58:58 +08:00
|
|
|
"src/**/*.js",
|
|
|
|
"src/**/*.svelte"
|
|
|
|
],
|
2022-05-30 15:32:45 +08:00
|
|
|
"exclude": [
|
|
|
|
"node_modules/@types/node/**",
|
2022-06-27 02:50:04 +08:00
|
|
|
"src/*/lib/api-client",
|
2022-05-30 15:32:45 +08:00
|
|
|
],
|
2022-04-11 04:58:58 +08:00
|
|
|
"references": [
|
|
|
|
{
|
|
|
|
"path": "./tsconfig.node.json"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|