2021-01-28 09:12:04 +01:00
|
|
|
{
|
2021-02-17 06:14:07 +01:00
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
|
|
|
"declaration": true,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
"removeComments": true,
|
|
|
|
"noLib": false,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"target": "es6",
|
|
|
|
"sourceMap": false,
|
2021-03-09 00:13:43 +01:00
|
|
|
"allowJs": true,
|
2021-02-17 06:14:07 +01:00
|
|
|
"baseUrl": "./src",
|
|
|
|
"outDir": "./dist"
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/configuration.json",
|
2021-03-09 00:13:43 +01:00
|
|
|
"src/**/*"
|
2021-02-17 06:14:07 +01:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"dist"
|
|
|
|
]
|
|
|
|
}
|