mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2024-12-12 09:04:06 +02:00
27 lines
566 B
JSON
27 lines
566 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"target": "ES2018",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
// "importsNotUsedAsValues": "error",
|
|
"importHelpers": false,
|
|
"alwaysStrict": true,
|
|
"lib": [
|
|
"es2018",
|
|
"DOM",
|
|
"ES5",
|
|
"ES6",
|
|
"ES7",
|
|
"es2019.array"
|
|
]
|
|
},
|
|
"include": [
|
|
"**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"pouchdb-browser-webpack"
|
|
]
|
|
} |