2018-07-01 03:35:51 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2018-07-12 02:58:34 +03:00
|
|
|
"moduleResolution": "node",
|
2018-07-01 03:35:51 +03:00
|
|
|
"module": "commonjs",
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"experimentalDecorators": true,
|
2018-10-26 06:41:20 +03:00
|
|
|
"emitDecoratorMetadata": true,
|
2019-02-17 22:48:41 +02:00
|
|
|
"target": "esnext",
|
2018-07-01 03:35:51 +03:00
|
|
|
"lib": [
|
2019-02-17 22:48:41 +02:00
|
|
|
"esnext"
|
2018-07-01 03:35:51 +03:00
|
|
|
],
|
2019-11-02 22:11:26 +02:00
|
|
|
"baseUrl": "src",
|
2018-07-12 02:58:34 +03:00
|
|
|
"resolveJsonModule": true,
|
2018-12-14 06:47:58 +02:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"outDir": "./dist"
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/**/*.ts"
|
|
|
|
]
|
2018-07-01 03:35:51 +03:00
|
|
|
}
|