forked from grafana/grafana-polystat-panel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
48 lines (48 loc) · 1.37 KB
/
tsconfig.json
File metadata and controls
48 lines (48 loc) · 1.37 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
{
"compilerOptions": {
"alwaysStrict": true,
"allowSyntheticDefaultImports": true,
"allowJs": false,
"declaration": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"jsx": "react",
"inlineSourceMap": true,
"inlineSources": true,
"module": "system",
"moduleResolution": "node",
"noEmitOnError": false,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitUseStrict":false,
"noImplicitAny": false,
"noUnusedParameters": true,
"noUnusedLocals": true,
"outDir": "dist",
"skipLibCheck": true,
"sourceMap": true,
"strictFunctionTypes": false,
"strictNullChecks": false,
"strictPropertyInitialization": false,
"rootDir": "src/",
"target": "es5",
"typeRoots": [ "node_modules/@types/" ]
},
"paths": {
"app/core/time_series2": ["node_modules/typed-some-module"]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"node_modules/grafana-sdk-mocks/app/headers/common.d.ts",
"node_modules/@types/grafana/index.d.ts",
"node_modules/@types/d3-hexbin/index.d.ts",
"node_modules/@types/d3/index.d.ts",
"node_modules/@types/lodash/index.d.ts"
],
"exclude": [
"node_modules"
]
}