2020-02-24 10:03:10 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2020-05-10 12:00:53 +02:00
|
|
|
"target": "es2017",
|
|
|
|
"module": "commonjs",
|
2020-06-06 19:29:56 +02:00
|
|
|
"noEmit": true,
|
2020-05-10 12:00:53 +02:00
|
|
|
"strict": true,
|
|
|
|
"esModuleInterop": true,
|
2020-05-22 19:50:47 +02:00
|
|
|
"sourceMap": true,
|
2020-05-10 12:00:53 +02:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true
|
2020-05-23 15:04:51 +02:00
|
|
|
},
|
|
|
|
"include": ["src/**/*"],
|
|
|
|
"exclude": ["node_modules"]
|
2020-02-24 10:03:10 +01:00
|
|
|
}
|