forked from DTStack/dt-react-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
26 lines (26 loc) · 815 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
{
"compilerOptions": {
"module": "esnext",
"target": "es6",
"moduleResolution": "Node",
"resolveJsonModule": true,
"keyofStringsOnly": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"strict": true,
"declaration": true,
"skipLibCheck": true,
"esModuleInterop": true,
"lib": ["es6", "es2016", "dom"],
"jsx": "react",
"baseUrl": "./",
"outDir": "./dist",
"typeRoots": ["node", "node_modules/@types", "node_modules/@typed-mxgraph"],
"paths": {
"@@/*": [".dumi/tmp/*"],
"dt-react-component": ["src"],
"dt-react-component/*": ["src/*", "*"]
}
},
"include": ["src/**/*", ".dumi/**/*", ".dumirc.ts"]
}