You've already forked gnatdashboard
mirror of
https://github.com/AdaCore/gnatdashboard.git
synced 2026-02-12 12:30:42 -08:00
This commit transition the application to Angular 13, and refactors the
build process to use the Angular CLI instead of hacking a webpack config.
It also removes a lot of things: junk code, or features that are no longer
needed, like the following:
* The Codepeer history view of the various runs is removed
* The refresh review / add review buttons with their associated dialog
are removed
Change-Id: I8adb19aa2ec8303aa23bd38a916fac35947ee69a
Depends-On: Ie50b0def8c0c2485f890eb46317b53b62b4382dd
TN: V316-059
45 lines
1.2 KiB
JSON
45 lines
1.2 KiB
JSON
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
|
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"outDir": "./dist/out-tsc",
|
|
"forceConsistentCasingInFileNames": true,
|
|
// TODO: enable strict. Avoid the hassle of fixing everything for now.
|
|
"strict": false,
|
|
"noImplicitOverride": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
// TODO: enable noImplicitAny. Same remark as above.
|
|
"noImplicitAny": false,
|
|
"sourceMap": true,
|
|
"declaration": false,
|
|
"downlevelIteration": true,
|
|
"experimentalDecorators": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "es2020",
|
|
"module": "es2020",
|
|
"lib": [
|
|
"es2020",
|
|
"dom"
|
|
],
|
|
"paths": {
|
|
"timers": [
|
|
"node_modules/timers-browserify"
|
|
],
|
|
"stream": [
|
|
"node_modules/stream-browserify"
|
|
]
|
|
}
|
|
},
|
|
"angularCompilerOptions": {
|
|
"enableI18nLegacyMessageIdFormat": false,
|
|
"strictInjectionParameters": true,
|
|
"strictInputAccessModifiers": true,
|
|
"strictTemplates": false
|
|
}
|
|
}
|