Files
gnatdashboard/webui/tsconfig.webpack.json
David Assamoi fc33d738f2 Fix performance issue visible when numerous messages are loaded
Convert messages list to a dict
Use onPush detection changes in angular to avoid listening to
all single event (in particular keyup ones) when entering a review.
Adjust main page settings with regards to change detection mechanism

Part of T515-011

Change-Id: I5cb13d35d7069e4588397155288e670e2bc823f9
2020-09-07 17:52:23 +02:00

45 lines
860 B
JSON

{
"compilerOptions": {
"target": "es2017",
"module": "es2015",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"noEmit": true,
"noEmitHelpers": true,
"strictNullChecks": false,
"lib": [
"es2015",
"dom"
],
"typeRoots": [
"node_modules/@types"
],
"types": [
"hammerjs",
"node"
]
},
"exclude": [
"node_modules",
"dist",
"src/**/*.spec.ts",
"src/**/*.e2e.ts"
],
"awesomeTypescriptLoaderOptions": {
"forkChecker": true,
"useWebpackText": true
},
"angularCompilerOptions": {
"genDir": "./compiled",
"skipMetadataEmit": true
},
"compileOnSave": false,
"buildOnSave": false,
"atom": {
"rewriteTsconfig": false
}
}