mirror of
https://github.com/timberjoegithub/grafana-statusmap.git
synced 2026-07-22 07:49:47 +00:00
- fix linter warnings - use yarn: remove Gruntfile.js and package-lock.json ++
36 lines
791 B
JSON
36 lines
791 B
JSON
{
|
|
"extends": "./node_modules/@grafana/toolkit/src/config/tsconfig.plugin.json",
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
// Don't emit; allow Babel to transform files.
|
|
//"noEmit": true,
|
|
// Disallow features that require cross-file information for emit.
|
|
//"isolatedModules": true,
|
|
|
|
"removeComments": false,
|
|
"inlineSourceMap": false,
|
|
"emitDecoratorMetadata": false,
|
|
"strictNullChecks": false,
|
|
"noImplicitAny": false,
|
|
"noImplicitUseStrict": false,
|
|
"noEmitOnError": false,
|
|
|
|
"rootDir": "./src",
|
|
"baseUrl": "./src",
|
|
"outDir": "dist",
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"./src/types"
|
|
]
|
|
},
|
|
"include": [
|
|
"src",
|
|
"types"
|
|
],
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules"
|
|
]
|
|
}
|