Files
grafana/tsconfig.json
T

33 lines
807 B
JSON
Raw Normal View History

{
"compilerOptions": {
2017-10-01 20:02:25 +02:00
"moduleResolution": "node",
"outDir": "public/dist",
"target": "es5",
"lib": ["es6", "dom"],
"rootDir": "public/",
"jsx": "react",
"module": "esnext",
"declaration": false,
"allowSyntheticDefaultImports": true,
2017-10-07 10:31:39 +02:00
"inlineSourceMap": false,
"sourceMap": true,
2017-10-01 20:02:25 +02:00
"noEmitOnError": false,
"emitDecoratorMetadata": false,
"experimentalDecorators": false,
"noImplicitReturns": true,
"noImplicitThis": false,
"noImplicitUseStrict":false,
"noImplicitAny": false,
2017-10-05 11:37:00 +02:00
"noUnusedLocals": true,
2017-10-01 20:02:25 +02:00
"baseUrl": "public",
"paths": {
"app": ["app"]
}
2015-12-17 14:27:34 +01:00
},
2016-12-09 21:53:00 +00:00
"include": [
2017-10-01 20:02:25 +02:00
"public/app/**/*.ts",
"public/app/**/*.tsx",
"public/test/**/*.ts"
2015-12-17 14:27:34 +01:00
]
2016-04-11 16:21:25 -04:00
}