mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
29 lines
688 B
JSON
29 lines
688 B
JSON
{
|
|
"compilerOptions": {
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"outDir": "public_gen",
|
|
"noImplicitAny": false,
|
|
"target": "es5",
|
|
"rootDir": "public/",
|
|
"module": "system",
|
|
"noEmitOnError": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"noImplicitReturns":false,
|
|
"noImplicitThis":false,
|
|
"noImplicitUseStrict":false,
|
|
"noUnusedLocals":false,
|
|
"moduleResolution": "classic"
|
|
},
|
|
"include": [
|
|
"public/app/**/*.ts",
|
|
"public/test/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"public/vendor/**/*",
|
|
"public/**/*.d.ts"
|
|
]
|
|
|
|
}
|