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

17 lines
437 B
JSON
Raw Normal View History

2021-10-12 16:50:13 +02:00
{
"compilerOptions": {
"baseUrl": ".",
"module": "ESNext",
"target": "ES6",
2021-10-12 16:50:13 +02:00
"allowJs": true,
"noImplicitAny": true,
"moduleResolution": "node",
// "importsNotUsedAsValues": "error",
2021-10-12 16:50:13 +02:00
"importHelpers": true,
"alwaysStrict": true,
"lib": ["es2018", "DOM", "ES5", "ES6", "ES7"]
2021-10-12 16:50:13 +02:00
},
"include": ["**/*.ts"],
"exclude": ["pouchdb-browser-webpack"]
2021-10-12 16:50:13 +02:00
}