forked from ice-lab/icepkg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
23 lines (23 loc) · 841 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
{
"compilerOptions": {
"target": "ES2017",
"module": "ESNext",
"moduleResolution": "node",
"jsx": "react",
"experimentalDecorators": true,
"declaration": true,
"skipLibCheck": true,
"sourceMap": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"paths": {
"example-pkg-react-component": ["./examples/react-component/src"],
"example-pkg-react-component/*": ["./examples/react-component/src/*"],
"example-pkg-react-multi-components": ["./examples/react-multi-components/src"],
"example-pkg-react-multi-components/*": ["./examples/react-multi-components/src/*"],
"example-rax-component": ["./examples/rax-component/src"],
"example-rax-component/*": ["./examples/rax-component/src/*"]
}
},
}