2021-08-20 09:39:07 +00:00
|
|
|
{
|
|
|
|
"compileOnSave": false,
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ES2015",
|
|
|
|
"module": "commonjs",
|
|
|
|
"lib": [
|
|
|
|
"es6",
|
|
|
|
"dom"
|
|
|
|
],
|
|
|
|
"declaration": true,
|
2021-09-10 13:38:20 +00:00
|
|
|
"outDir": "dist",
|
2021-08-20 09:39:07 +00:00
|
|
|
"strict": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"esModuleInterop": true,
|
2021-08-29 13:16:25 +00:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2021-09-10 13:38:20 +00:00
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true
|
2021-08-20 09:39:07 +00:00
|
|
|
},
|
|
|
|
"include": [
|
2021-09-09 15:52:03 +00:00
|
|
|
"src/"
|
2021-08-20 09:39:07 +00:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"src/**/*.test.ts"
|
|
|
|
]
|
|
|
|
}
|