forked from lumada-design/hv-uikit-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
29 lines (29 loc) · 873 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": {
"module": "commonjs",
"target": "es5",
"lib": ["es6", "dom"],
"jsx": "react",
"esModuleInterop": true,
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"strict": true,
"noEmit": true,
"experimentalDecorators": true,
"baseUrl": "./",
"allowSyntheticDefaultImports": true,
"noErrorTruncation": true,
"allowJs": true,
"paths": {
"@hitachivantara/uikit-react-core": ["./packages/core/src"],
"@hitachivantara/uikit-react-core/dist/*": ["./packages/core/src/*"],
"@hitachivantara/uikit-react-icons": ["./packages/icons/bin"],
"@hitachivantara/uikit-react-icons/dist/*": ["./packages/icons/bin/*"]
},
"noUnusedLocals": true,
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true
},
"exclude": ["**/dist/"]
}