2019-06-15 22:44:54 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2020-08-03 09:30:48 +02:00
|
|
|
"composite": true,
|
2019-06-15 22:44:54 +02:00
|
|
|
"lib": ["es6"],
|
2020-08-03 09:30:48 +02:00
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"target": "ES6",
|
2019-06-15 22:44:54 +02:00
|
|
|
"noImplicitAny": true,
|
2020-08-03 09:30:48 +02:00
|
|
|
"outDir": "lib",
|
2019-07-21 23:50:10 +02:00
|
|
|
"declaration": true,
|
2020-08-10 11:07:20 +02:00
|
|
|
"declarationMap": true,
|
2019-06-15 22:44:54 +02:00
|
|
|
"noEmitOnError": true,
|
|
|
|
"strict": true,
|
2019-06-21 19:18:36 +02:00
|
|
|
"incremental": true,
|
2019-08-16 22:35:44 +02:00
|
|
|
"sourceMap": true,
|
2020-08-03 09:30:48 +02:00
|
|
|
"rootDir": "./src",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"importHelpers": true,
|
2021-02-08 15:23:44 +01:00
|
|
|
"isolatedModules": true,
|
2020-08-03 09:30:48 +02:00
|
|
|
"typeRoots": ["./node_modules/@types"]
|
2019-06-15 22:44:54 +02:00
|
|
|
},
|
|
|
|
"include": ["src/**/*"]
|
|
|
|
}
|