mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2024-12-03 08:45:34 +02:00
24 lines
773 B
JSON
24 lines
773 B
JSON
{
|
|
"extends": "@tsconfig/svelte/tsconfig.json",
|
|
"inlineSourceMap": true,
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"target": "ES2018",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"types": ["svelte", "node"],
|
|
// "importsNotUsedAsValues": "error",
|
|
"importHelpers": false,
|
|
"alwaysStrict": true,
|
|
"allowImportingTsExtensions": true,
|
|
"noEmit": true,
|
|
"lib": ["es2018", "DOM", "ES5", "ES6", "ES7", "es2019.array", "ES2021.WeakRef", "ES2020.BigInt", "ESNext.Intl"],
|
|
"strictBindCallApply": true,
|
|
"strictFunctionTypes": true
|
|
},
|
|
"include": ["**/*.ts"],
|
|
"exclude": ["pouchdb-browser-webpack", "utils"]
|
|
}
|