-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
35 lines (35 loc) · 989 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
30
31
32
33
34
35
{
"exclude": ["node_modules", "lib"],
"include": ["packages/*"],
"files": [],
"compilerOptions": {
"target": "es5",
"module": "es2015",
"lib": ["esnext", "dom"],
"jsx": "react" /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */,
"esModuleInterop": true,
"declaration": true,
"strict": false,
"skipLibCheck": true,
"typeRoots": [
"./node_modules/@types",
"./types",
"./packages/hippy_ui_react/src/types",
"./packages/hippy_ui_react_business/src/types"
],
"moduleResolution": "node",
"baseUrl": ".",
"rootDir": ".",
"outDir": "lib",
"paths": {
"@hippy/react": ["types/hippy.d.ts"],
"hippy_ui_react": ["packages/hippy_ui_react/src"],
"hippy_ui_react_business": ["packages/hippy_ui_react_business/src"]
}
},
"references": [
{ "path": "packages/hippy_ui_react" },
{ "path": "packages/hippy_ui_react_business" },
{ "path": "example" }
]
}