forked from core-ds/core-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
28 lines (28 loc) · 933 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
{
"compilerOptions": {
"skipLibCheck": true,
"target": "ES5",
"module": "commonjs",
"jsx": "react",
"rootDir": ".",
"outDir": "dist",
"allowJs": true,
"esModuleInterop": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"typeRoots": ["./typings", "./node_modules/@types"],
"composite": true,
"declaration": true,
"baseUrl": ".",
"paths": {
"@alfalab/core-components-modal/*": ["packages/modal/src/*"],
"@alfalab/core-components-*": ["packages/*/src"],
"@alfalab/core-components-icon-view/*": ["packages/icon-view/src/*"],
}
},
"exclude": ["node_modules", "dist", "**/*.stories*", "**/*.test*"],
"include": ["./typings"]
}