mirror of
https://github.com/grafana/grafana.git
synced 2024-12-02 05:29:42 -06:00
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"
|
||
|
]
|
||
|
}
|