-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
57 lines (57 loc) · 1.6 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"esModuleInterop": false,
"forceConsistentCasingInFileNames": true,
"importHelpers": false,
"jsx": "preserve",
"lib": [
"dom",
"esnext"
],
"module": "esnext",
"moduleResolution": "node",
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"outDir": "./dist",
"pretty": true,
"paths": {
"@teko-data-ui/core": [
"./node_modules/@teko-data-ui/core/src",
"./node_modules/@teko-data-ui/core"
],
"@teko-data-ui/chart-controls": [
"./node_modules/@teko-data-ui/chart-controls/src",
"./node_modules/@teko-data-ui/chart-controls"
],
// for supressing errors caused by incompatible @types/react when `npm link`
// Ref: https://github.com/Microsoft/typescript/issues/6496#issuecomment-384786222
"react": [
"./node_modules/@types/react",
"react"
]
},
"skipLibCheck": true,
"sourceMap": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"target": "esnext"
},
"include": [
"./src/**/*",
"./spec/**/*",
// include the source code of each plugin
"./node_modules/*teko-data-ui*/**/src/**/*",
"./node_modules/*teko-data-ui*/**/types/**/*",
// and the type defs of their dependencies
"./node_modules/*teko-data-ui*/**/node_modules/**/*.d.ts",
"stylesheets"
],
"exclude": [
"./node_modules/*teko-data-ui*/**/node_modules/@teko-data-ui/**/*"
]
}