2020-10-27 09:41:16 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"declaration": false,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
2021-04-02 16:02:50 +02:00
|
|
|
"lib": ["es6", "dom", "es2015.collection", "es2015.iterable"],
|
2022-01-17 10:48:23 +01:00
|
|
|
"module": "ES2020",
|
2020-10-27 09:41:16 +01:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"sourceMap": true,
|
|
|
|
"target": "es5",
|
|
|
|
"jsx": "react",
|
|
|
|
"noEmit": true,
|
2021-04-02 16:02:50 +02:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"downlevelIteration": true,
|
2020-10-27 09:41:16 +01:00
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"**/*.spec.ts",
|
|
|
|
"node_modules",
|
|
|
|
"vendor",
|
|
|
|
"public"
|
|
|
|
],
|
|
|
|
"compileOnSave": false
|
|
|
|
}
|