grafana/tsconfig.json

28 lines
657 B
JSON
Raw Normal View History

{
"compilerOptions": {
2015-12-17 07:27:34 -06:00
"sourceMap": true,
"declaration": true,
"outDir": "public_gen",
"noImplicitAny": false,
"target": "es5",
"rootDir": "public/",
"module": "system",
"noEmitOnError": true,
2016-04-11 15:21:25 -05:00
"emitDecoratorMetadata": true,
2016-12-09 15:53:00 -06:00
"experimentalDecorators": true,
"noImplicitReturns":false,
"noImplicitThis":false,
"noImplicitUseStrict":false,
"noUnusedLocals":false,
"moduleResolution": "classic"
2015-12-17 07:27:34 -06:00
},
2016-12-09 15:53:00 -06:00
"include": [
2016-04-11 15:21:25 -05:00
"public/app/**/*.ts"
2016-12-09 15:53:00 -06:00
],
"exclude": [
"public/vendor/**/*",
"public/**/*.d.ts"
2015-12-17 07:27:34 -06:00
]
2016-12-09 15:53:00 -06:00
2016-04-11 15:21:25 -05:00
}