Files
grafana/tsconfig.json
T

37 lines
983 B
JSON
Raw Normal View History

{
2018-07-25 16:16:33 +02:00
"compilerOptions": {
"moduleResolution": "node",
"outDir": "public/dist",
"target": "es5",
2018-08-30 08:33:29 +02:00
"lib": ["es6", "dom"],
2018-07-25 16:16:33 +02:00
"rootDir": "public/",
"jsx": "react",
"module": "esnext",
"declaration": false,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
2018-08-30 08:33:29 +02:00
"importHelpers": true,
"noEmitHelpers": true,
"removeComments": false,
2018-07-25 16:16:33 +02:00
"inlineSourceMap": false,
"sourceMap": true,
"noEmitOnError": false,
"emitDecoratorMetadata": false,
"experimentalDecorators": true,
"noImplicitReturns": true,
"noImplicitThis": true,
2018-07-25 16:16:33 +02:00
"noImplicitUseStrict": false,
"noImplicitAny": false,
"noUnusedLocals": true,
"baseUrl": "public",
"pretty": true,
2018-12-25 08:55:44 +01:00
"typeRoots": ["node_modules/@types", "types"],
2018-07-25 16:16:33 +02:00
"paths": {
"app": ["app"],
"sass": ["sass"]
2018-07-25 16:16:33 +02:00
}
},
2018-08-30 08:33:29 +02:00
"include": ["public/app/**/*.ts", "public/app/**/*.tsx", "public/test/**/*.ts"]
}