forked from work-outer/app-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
41 lines (41 loc) · 1.38 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
35
36
37
38
39
40
41
{
"compilerOptions": {
"baseUrl": "./",
"target": "es5",
"module": "esnext",
"lib": ["dom", "esnext"],
"declaration": true,
"sourceMap": true,
"moduleResolution": "node",
"skipLibCheck": true,
"strict": true,
"noFallthroughCasesInSwitch": true,
"suppressImplicitAnyIndexErrors": true,
"noImplicitAny": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"jsx": "react",
"esModuleInterop": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"downlevelIteration": true,
"paths": {
"@steedos/builder-store": ["/packages/builder-store/src/index.tsx"],
"@steedos/builder-ant-design": ["/packages/builder-ant-design/src/index.tsx"],
"@steedos/builder-form": ["/packages/builder-form/src/index.tsx"],
"@steedos/builder-steedos": ["/packages/builder-steedos/src/index.tsx"],
"@steedos/builder-object": ["/packages/builder-object/src/index.tsx"],
"@steedos/builder-locale": ["/packages/builder-locale/src/index.ts"],
}
},
"include": ["packages", "scripts", "tooling"],
"exclude": ["node_modules"],
"ts-node": {
"compilerOptions": {
"module": "CommonJS",
"resolveJsonModule": true,
"noImplicitAny": false
}
}
}