mirror of
https://github.com/grafana/grafana.git
synced 2024-11-28 19:54:10 -06:00
30 lines
745 B
JSON
30 lines
745 B
JSON
{
|
|
"compilerOptions": {
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"outDir": "public_gen",
|
|
"noImplicitAny": false,
|
|
"target": "es5",
|
|
"lib": ["es6", "dom"],
|
|
"rootDir": "public/",
|
|
"module": "system",
|
|
"jsx": "react",
|
|
"noEmitOnError": false,
|
|
"emitDecoratorMetadata": false,
|
|
"experimentalDecorators": false,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": false,
|
|
"noImplicitUseStrict":false,
|
|
"moduleResolution": "classic"
|
|
},
|
|
"include": [
|
|
"public/app/**/*.ts",
|
|
"public/app/**/*.tsx",
|
|
"public/test/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"public/vendor/**/*",
|
|
"public/**/*.d.ts"
|
|
]
|
|
}
|