Files
obsidian-livesync/tsconfig.json

29 lines
1002 B
JSON
Raw Normal View History

2021-10-12 23:50:13 +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,
"moduleResolution": "bundler",
2024-10-16 12:44:07 +01:00
"types": ["svelte", "node"],
// "importsNotUsedAsValues": "error",
2022-09-05 16:55:29 +09:00
"importHelpers": false,
"alwaysStrict": true,
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"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-01-07 08:38:33 +00:00
"include": ["**/*.ts", "test/**/*.test.ts"],
"exclude": ["pouchdb-browser-webpack", "utils", "src/apps", "src/**/*.test.ts", "**/_test/**", "src/**/*.test.ts"]
2024-10-16 12:44:07 +01:00
}