forked from 100kimch/zandi-grapher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
60 lines (60 loc) · 1.53 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"compilerOptions": {
"outDir": "./build",
"module": "commonjs",
"target": "ESNEXT",
"lib": ["ES6", "ES2020", "ESNext", "dom"],
"sourceMap": true,
"jsx": "react",
"skipLibCheck": true,
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"importHelpers": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": false,
"declaration": true,
"allowSyntheticDefaultImports": true,
"allowJs": true,
"esModuleInterop": true,
"strict": true,
"noFallthroughCasesInSwitch": true,
"resolveJsonModule": true,
"isolatedModules": false,
"emitDeclarationOnly": true,
"noEmit": false,
"typeRoots": ["./node_modules/@types", "types"],
"baseUrl": "./src",
"rootDirs": ["./"],
"paths": {
"~apis": ["./apis/index.ts"],
"~assets/*": ["../public/*"],
"~components": ["./components/index.ts"],
"~config": ["../config/index.ts"],
"~constants": ["./constants/index.ts"],
"~hooks": ["./hooks/index.ts"],
"~models": ["./models/index.ts"],
"~stores": ["./stores/index.ts"],
"~styles/*": ["./styles/*"],
"~utils/*": ["./utils/*"]
}
},
"include": [
"src",
"public",
"node_modules/**/*.d.ts",
"node_modules/@types/**/*.d.ts"
],
"exclude": [
"lib",
"node_modules",
"build",
"scripts",
"acceptance-tests",
"webpack",
"jest",
]
}