2020-10-27 09:41:16 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"declaration": false,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
2022-09-21 17:36:45 +02:00
|
|
|
"lib": ["dom", "dom.iterable", "es2019"],
|
2022-01-17 10:48:23 +01:00
|
|
|
"module": "ES2020",
|
2020-10-27 09:41:16 +01:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"sourceMap": true,
|
2022-11-29 18:07:05 +01:00
|
|
|
"target": "ES2015",
|
2022-11-16 10:08:09 +01:00
|
|
|
"jsx": "react-jsx",
|
2020-10-27 09:41:16 +01:00
|
|
|
"noEmit": true,
|
2021-04-02 16:02:50 +02:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"downlevelIteration": true,
|
2022-11-29 11:19:07 +01:00
|
|
|
"rootDir": "app/frontend/src/javascript"
|
2020-10-27 09:41:16 +01:00
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"**/*.spec.ts",
|
|
|
|
"node_modules",
|
|
|
|
"vendor",
|
2022-11-29 11:19:07 +01:00
|
|
|
"public",
|
|
|
|
"test/frontend/**/*"
|
|
|
|
],
|
|
|
|
"include": [
|
|
|
|
"app/frontend/src/javascript/**/*"
|
2020-10-27 09:41:16 +01:00
|
|
|
],
|
|
|
|
"compileOnSave": false
|
|
|
|
}
|