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