-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtsconfig.json
34 lines (34 loc) · 1.09 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
{
"compilerOptions": {
"baseUrl": ".",
"declaration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react",
"lib": ["ESNext"],
"module": "ESNext",
"moduleResolution": "node",
"noImplicitAny": true,
"outDir": "./dist",
"paths": {
"@zedux/atoms": ["./packages/atoms/src"],
"@zedux/atoms/*": ["./packages/atoms/src/*"],
"@zedux/core": ["./packages/core/src"],
"@zedux/core/*": ["./packages/core/src/*"],
"@zedux/immer": ["./packages/immer/src"],
"@zedux/immer/*": ["./packages/immer/src/*"],
"@zedux/machines": ["./packages/machines/src"],
"@zedux/machines/*": ["./packages/machines/src/*"],
"@zedux/react": ["./packages/react/src"],
"@zedux/react/*": ["./packages/react/src/*"],
"@zedux/stores": ["./packages/stores/src"],
"@zedux/stores/*": ["./packages/stores/src/*"]
},
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "ES2015"
},
"exclude": ["**/dist", "node_modules"],
"include": ["./packages", "global.d.ts"]
}