You've already forked gnatdashboard
mirror of
https://github.com/AdaCore/gnatdashboard.git
synced 2026-02-12 12:30:42 -08:00
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
52 lines
951 B
JSON
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
|
|
}
|
|
}
|