2021-10-12 23:50:13 +09:00
|
|
|
{
|
2023-06-01 12:47:41 +09:00
|
|
|
"extends": "@tsconfig/svelte/tsconfig.json",
|
|
|
|
|
"inlineSourceMap": true,
|
2021-10-12 23:50:13 +09:00
|
|
|
"compilerOptions": {
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"module": "ESNext",
|
2022-09-05 16:55:29 +09:00
|
|
|
"target": "ES2018",
|
2021-10-12 23:50:13 +09:00
|
|
|
"allowJs": true,
|
|
|
|
|
"noImplicitAny": true,
|
2025-02-13 12:48:00 +00:00
|
|
|
"moduleResolution": "bundler",
|
2024-10-16 12:44:07 +01:00
|
|
|
"types": ["svelte", "node"],
|
2022-02-16 18:26:13 +09:00
|
|
|
// "importsNotUsedAsValues": "error",
|
2022-09-05 16:55:29 +09:00
|
|
|
"importHelpers": false,
|
2021-12-16 19:06:42 +09:00
|
|
|
"alwaysStrict": true,
|
2023-09-05 09:16:11 +01:00
|
|
|
"allowImportingTsExtensions": true,
|
2025-10-30 09:29:51 +01:00
|
|
|
"verbatimModuleSyntax": true,
|
2026-02-20 14:28:28 +00:00
|
|
|
"noImplicitOverride": true,
|
2024-01-12 09:36:49 +00:00
|
|
|
"noEmit": true,
|
2024-10-16 12:44:07 +01:00
|
|
|
"lib": ["es2018", "DOM", "ES5", "ES6", "ES7", "es2019.array", "ES2021.WeakRef", "ES2020.BigInt", "ESNext.Intl"],
|
|
|
|
|
"strictBindCallApply": true,
|
2025-02-17 11:30:42 +00:00
|
|
|
"strictFunctionTypes": true,
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["src/*"],
|
|
|
|
|
"@lib/*": ["src/lib/src/*"]
|
|
|
|
|
}
|
2021-10-12 23:50:13 +09:00
|
|
|
},
|
2026-02-25 09:38:31 +00:00
|
|
|
"include": ["**/*.ts", "test/**/*.test.ts", "**/*.unit.spec.ts"],
|
|
|
|
|
"exclude": ["pouchdb-browser-webpack", "utils", "src/apps", "src/**/*.test.ts", "**/_test/**"]
|
2024-10-16 12:44:07 +01:00
|
|
|
}
|