1
0
mirror of https://github.com/vrtmrz/obsidian-livesync.git synced 2024-12-12 09:04:06 +02:00
obsidian-livesync/tsconfig.json

35 lines
789 B
JSON
Raw Normal View History

2021-10-12 16:50:13 +02:00
{
"extends": "@tsconfig/svelte/tsconfig.json",
"inlineSourceMap": true,
2021-10-12 16:50:13 +02:00
"compilerOptions": {
"baseUrl": ".",
"module": "ESNext",
2022-09-05 09:55:29 +02:00
"target": "ES2018",
2021-10-12 16:50:13 +02:00
"allowJs": true,
"noImplicitAny": true,
"moduleResolution": "node",
"types": [
"svelte",
"node"
],
// "importsNotUsedAsValues": "error",
2022-09-05 09:55:29 +02:00
"importHelpers": false,
"alwaysStrict": true,
"allowImportingTsExtensions": true,
2022-09-06 06:42:12 +02:00
"lib": [
"es2018",
"DOM",
"ES5",
"ES6",
"ES7",
"es2019.array",
"ES2020.BigInt",
2022-09-06 06:42:12 +02:00
]
2021-10-12 16:50:13 +02:00
},
2022-09-06 06:42:12 +02:00
"include": [
"**/*.ts"
],
"exclude": [
"pouchdb-browser-webpack"
]
}