forked from seeksdream/relation-graph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
47 lines (47 loc) · 1.18 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
42
43
44
45
46
47
{
"compilerOptions": {
"outDir": "dist",
"target": "es2018",
"module": "esnext",
"baseUrl": ".",
"sourceMap": false,
"moduleResolution": "node",
"allowJs": false,
"strict": true,
"noUnusedLocals": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"removeComments": false,
"rootDir": ".",
"composite": true,
"jsx": "react-jsx",
"lib": ["ES2018", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
"types": ["node", "jest", "vue-typescript-support", "unplugin-vue-macros/macros-global"],
"typeRoots": ["./node_modules/@types", "./typings"]
},
"include": [
"packages/platforms/vue2",
"packages/platforms/vue3",
"packages/platforms/react",
"packages/relation-graph-models/",
"play/react-demo/src/",
"play/vue3-demo/src/",
"play/vue2-demo/src/",
"play/vue2.6.11/src/",
"types/",
"types/components.d.ts",
"packages/platforms/vue3/shims-vue.d.ts",
"typings/env.d.ts"
],
"exclude": [
"node_modules",
"**/dist",
"**/__tests__/**/*",
"**/gulpfile.ts",
"**/test-helper",
"packages/test-utils",
"**/*.md"
]
}