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",
|
|
|
|
"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-06-16 03:39:33 +02:00
|
|
|
"lib": ["es2017", "dom"],
|
2019-06-10 10:47:26 +02:00
|
|
|
"plugins": [
|
|
|
|
{
|
2019-06-16 00:41:43 +02:00
|
|
|
"name": "typescript-tslint-plugin"
|
2019-06-10 10:47:26 +02:00
|
|
|
}
|
2019-06-16 00:41:43 +02:00
|
|
|
],
|
|
|
|
"rootDir": "src",
|
|
|
|
"outDir": "dist"
|
|
|
|
},
|
|
|
|
"include": ["src/**/*"]
|
2019-06-08 00:36:44 +02:00
|
|
|
}
|