You've already forked gnatdashboard
mirror of
https://github.com/AdaCore/gnatdashboard.git
synced 2026-02-12 12:30:42 -08:00
Also upgrade other dependencies such as the latest and greatest Webpack. Refactor sources to comply to the coding style in order to have a clean run for tests. Change-Id: Ic10271c92c4b8c4b7991acfb28670d80b03a1f2b
43 lines
790 B
JSON
43 lines
790 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"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",
|
|
"source-map",
|
|
"uglify-js",
|
|
"webpack"
|
|
]
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist"
|
|
],
|
|
"awesomeTypescriptLoaderOptions": {
|
|
"forkChecker": true,
|
|
"useWebpackText": true
|
|
},
|
|
"compileOnSave": false,
|
|
"buildOnSave": false,
|
|
"atom": {
|
|
"rewriteTsconfig": false
|
|
}
|
|
}
|