mirror of
https://github.com/grafana/grafana.git
synced 2024-11-22 08:56:43 -06:00
33 lines
806 B
JSON
33 lines
806 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"outDir": "public/dist",
|
|
"target": "es5",
|
|
"lib": ["es6", "dom"],
|
|
"rootDir": "public/",
|
|
"jsx": "react",
|
|
"module": "esnext",
|
|
"declaration": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"inlineSourceMap": false,
|
|
"sourceMap": true,
|
|
"noEmitOnError": false,
|
|
"emitDecoratorMetadata": false,
|
|
"experimentalDecorators": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": false,
|
|
"noImplicitUseStrict":false,
|
|
"noImplicitAny": false,
|
|
"noUnusedLocals": true,
|
|
"baseUrl": "public",
|
|
"paths": {
|
|
"app": ["app"]
|
|
}
|
|
},
|
|
"include": [
|
|
"public/app/**/*.ts",
|
|
"public/app/**/*.tsx",
|
|
"public/test/**/*.ts"
|
|
]
|
|
}
|