-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathtsconfig.json
49 lines (49 loc) · 1.06 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
{
"compilerOptions": {
"baseUrl": ".",
"target": "es2020",
"module": "esnext",
"moduleResolution": "node",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"jsx": "react",
"strict": true,
"allowJs": false,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"preserveConstEnums": true,
"paths": {
"@mocks/*": [
"__mocks__/*"
],
"dnd-multi-backend": [
"packages/dnd-multi-backend/src"
],
"rdndmb-html5-to-touch": [
"packages/rdndmb-html5-to-touch/src"
],
"react-dnd-preview": [
"packages/react-dnd-preview/src"
]
},
"skipLibCheck": true
},
"include": [
".jest-setup.ts",
"__mocks__/**/*.ts",
"packages/*/examples/**/*.ts*",
"packages/*/src/**/*.ts*"
],
"exclude": [
"node_modules"
]
}