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