You've already forked gnatdashboard
mirror of
https://github.com/AdaCore/gnatdashboard.git
synced 2026-02-12 12:30:42 -08:00
- Added rule only for Karma in makefile - Picked the right version to run Karma wothout error - Review existing spec.ts Change-Id: Ibf59f8359cb33738f56562ddd14a64667914becb For: S923-005
52 lines
948 B
JSON
52 lines
948 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"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
|
|
}
|
|
}
|