Files
grafana-statusmap/tsconfig.json
Ivan Mikheykin e987dee850 feat: use grafana-toolkit to build a plugin
- fix linter warnings
- use yarn: remove Gruntfile.js and package-lock.json

++
2021-02-16 17:43:48 +03:00

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"
]
}