1
0
mirror of https://github.com/vrtmrz/obsidian-livesync.git synced 2025-01-20 18:28:20 +02:00
obsidian-livesync/tsconfig.json

27 lines
566 B
JSON
Raw Normal View History

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": "node",
// "importsNotUsedAsValues": "error",
2022-09-05 16:55:29 +09:00
"importHelpers": false,
"alwaysStrict": true,
2022-09-06 13:42:12 +09:00
"lib": [
"es2018",
"DOM",
"ES5",
"ES6",
"ES7",
"es2019.array"
]
2021-10-12 23:50:13 +09:00
},
2022-09-06 13:42:12 +09:00
"include": [
"**/*.ts"
],
"exclude": [
"pouchdb-browser-webpack"
]
}