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

17 lines
437 B
JSON
Raw Permalink Normal View History

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