mirror of
https://github.com/grafana/grafana.git
synced 2024-11-24 09:50:29 -06:00
8e5000fb31
ref #11433
25 lines
589 B
JSON
25 lines
589 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"target": "es6",
|
|
"lib": ["es6"],
|
|
"module": "commonjs",
|
|
"declaration": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"inlineSourceMap": false,
|
|
"sourceMap": true,
|
|
"noEmitOnError": false,
|
|
"emitDecoratorMetadata": false,
|
|
"experimentalDecorators": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": false,
|
|
"noImplicitUseStrict":false,
|
|
"noImplicitAny": false,
|
|
"noUnusedLocals": true
|
|
},
|
|
"include": [
|
|
"*.ts",
|
|
"**/*.ts"
|
|
]
|
|
}
|