2019-06-08 00:36:44 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
2019-06-23 23:11:26 +02:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"esModuleInterop": true,
|
2019-10-05 03:09:34 +02:00
|
|
|
"resolveJsonModule": true,
|
2019-06-23 23:11:26 +02:00
|
|
|
"noImplicitAny": true,
|
2019-06-08 00:36:44 +02:00
|
|
|
"removeComments": true,
|
|
|
|
"sourceMap": true,
|
2019-06-16 00:41:43 +02:00
|
|
|
"preserveConstEnums": false,
|
2019-06-23 02:30:24 +02:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
2019-10-05 03:09:34 +02:00
|
|
|
"lib": ["es2018", "dom"]
|
2019-06-16 00:41:43 +02:00
|
|
|
},
|
2019-11-18 22:38:51 +01:00
|
|
|
"include": ["declarations/**/*.ts", "src/**/*.ts", "tests/**/*.ts", "mocks/**/*.ts"]
|
2019-06-08 00:36:44 +02:00
|
|
|
}
|