mirror of
https://github.com/grafana/grafana.git
synced 2024-11-22 17:06:57 -06:00
37 lines
986 B
JSON
37 lines
986 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"outDir": "public/dist",
|
|
"target": "es5",
|
|
"lib": ["es6", "dom"],
|
|
"rootDirs": ["public/"],
|
|
"jsx": "react",
|
|
"module": "esnext",
|
|
"declaration": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"importHelpers": true,
|
|
"noEmitHelpers": true,
|
|
"removeComments": false,
|
|
"inlineSourceMap": false,
|
|
"sourceMap": true,
|
|
"noEmitOnError": false,
|
|
"emitDecoratorMetadata": false,
|
|
"experimentalDecorators": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitUseStrict": false,
|
|
"noImplicitAny": false,
|
|
"noUnusedLocals": true,
|
|
"baseUrl": "public",
|
|
"pretty": true,
|
|
"typeRoots": ["node_modules/@types", "types"],
|
|
"paths": {
|
|
"app": ["app"],
|
|
"sass": ["sass"]
|
|
}
|
|
},
|
|
"include": ["public/app/**/*.ts", "public/app/**/*.tsx", "public/test/**/*.ts"]
|
|
}
|