-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathtsconfig.json
More file actions
36 lines (34 loc) · 822 Bytes
/
Copy pathtsconfig.json
File metadata and controls
36 lines (34 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"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,
"noUnusedLocals": false,
"rootDir": "./src",
"baseUrl": "./src",
"outDir": "dist",
"typeRoots": [
"./node_modules/@types",
"./src/types"
]
},
"include": [
"src",
"types"
],
"exclude": [
"dist",
"node_modules"
]
}