2020-04-22 15:52:17 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2020-04-23 11:40:55 +02:00
|
|
|
"target": "ES6",
|
2020-04-23 11:16:05 +02:00
|
|
|
"module": "CommonJS",
|
2020-04-22 15:52:17 +02:00
|
|
|
"declaration": true,
|
|
|
|
"stripInternal": true,
|
|
|
|
|
|
|
|
"strict": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
|
|
|
"moduleResolution": "Node",
|
2020-04-23 11:16:05 +02:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"baseUrl": "dist",
|
2020-04-23 12:12:08 +02:00
|
|
|
"rootDirs": [
|
|
|
|
"src",
|
|
|
|
"config"
|
|
|
|
],
|
2020-04-23 11:16:05 +02:00
|
|
|
"sourceRoot": "src",
|
2020-04-22 15:52:17 +02:00
|
|
|
"inlineSourceMap": true,
|
|
|
|
"inlineSources": true,
|
|
|
|
"outDir": "dist",
|
|
|
|
|
|
|
|
"typeRoots": [
|
|
|
|
"node_modules/@types",
|
|
|
|
"src/types"
|
|
|
|
],
|
|
|
|
"lib": [
|
|
|
|
"es2020"
|
2020-09-25 11:38:05 +02:00
|
|
|
],
|
|
|
|
"resolveJsonModule": true
|
2020-04-22 15:52:17 +02:00
|
|
|
},
|
|
|
|
"include": [
|
2020-09-03 08:06:27 +02:00
|
|
|
"src/**/*"
|
2020-04-22 15:52:17 +02:00
|
|
|
]
|
|
|
|
}
|