2019-06-08 00:36:44 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2019-06-16 00:41:43 +02:00
|
|
|
"baseUrl": "./src",
|
2019-06-08 00:36:44 +02:00
|
|
|
"module": "commonjs",
|
2019-06-23 23:11:26 +02:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"noImplicitAny": true,
|
2019-06-08 00:36:44 +02:00
|
|
|
"removeComments": true,
|
|
|
|
"sourceMap": true,
|
2019-06-09 02:47:46 +02:00
|
|
|
"allowJs": 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-03 23:48:00 +02:00
|
|
|
"lib": ["es2018", "dom"],
|
2019-06-24 00:01:50 +02:00
|
|
|
"rootDir": "src",
|
|
|
|
"outDir": "dist"
|
2019-06-16 00:41:43 +02:00
|
|
|
},
|
2019-10-02 22:42:27 +02:00
|
|
|
"include": ["src/**/*.ts"]
|
2019-06-08 00:36:44 +02:00
|
|
|
}
|