1
0
mirror of https://github.com/vrtmrz/obsidian-livesync.git synced 2025-01-05 12:50:41 +02:00
obsidian-livesync/tsconfig.json

33 lines
715 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,
2022-09-06 06:42:12 +02:00
"lib": [
"es2018",
"DOM",
"ES5",
"ES6",
"ES7",
"es2019.array"
]
2021-10-12 16:50:13 +02:00
},
2022-09-06 06:42:12 +02:00
"include": [
"**/*.ts"
],
"exclude": [
"pouchdb-browser-webpack"
]
}