Files
gnatdashboard/webui/tsconfig.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

52 lines
951 B
JSON

{
"compilerOptions": {
"target": "es2017",
"module": "esnext",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"noEmit": true,
"noEmitHelpers": true,
"strictNullChecks": false,
"lib": [
"dom",
"es6"
],
"typeRoots": [
"node_modules/@types"
],
"types": [
"hammerjs",
"jasmine",
"node",
"uglify-js",
"webpack",
"events",
"glob",
"minimatch",
"q",
"tapable",
"xml2js"
]
},
"exclude": [
"node_modules",
"dist"
],
"files": [
"./node_modules/@types/tapable/index.d.ts"
"./src/gnat.d.ts"
],
"awesomeTypescriptLoaderOptions": {
"forkChecker": true,
"useWebpackText": true
},
"compileOnSave": false,
"buildOnSave": false,
"atom": {
"rewriteTsconfig": false
}
}