Files
gnatdashboard/webui/tsconfig.json
Lespinasse 1df2510ee3 WebUI: Rework of the testsuites
- 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
2020-01-21 11:23:49 +01:00

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
}
}