forked from elastic/elastic-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
29 lines (29 loc) · 823 Bytes
/
tsconfig.json
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
{
"compilerOptions": {
"declaration": true,
"declarationMap": true,
"noImplicitAny": true,
"noUnusedLocals": false,
"sourceMap": true,
"preserveConstEnums": true,
"strict": true,
"esModuleInterop": true,
"module": "CommonJS",
"target": "es5",
"lib": ["esnext", "dom"],
"moduleResolution": "node",
"jsx": "react",
"allowJs": false,
"skipLibCheck": true,
"downlevelIteration": true,
"stripInternal": true,
"resolveJsonModule": true,
"typeRoots": ["./node_modules/@types", "./**/*.d.ts", "./scripts/custom_matchers.ts"],
"paths": {
"*": ["./declarations/*", "./*"],
"/@elastic/charts$": ["./packages/charts/src"],
"/@elastic/charts/src/*": ["./packages/charts/src/*"]
}
},
"exclude": ["**/tmp", "**/dist", "./docs"]
}