Files
obsidian-livesync/tsconfig.json

24 lines
776 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,
"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,
"strictFunctionTypes": true
2021-10-12 23:50:13 +09:00
},
2024-10-16 12:44:07 +01:00
"include": ["**/*.ts"],
2024-10-17 09:57:42 +01:00
"exclude": ["pouchdb-browser-webpack", "utils"]
2024-10-16 12:44:07 +01:00
}