-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
tsconfig.json
30 lines (30 loc) · 972 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
27
28
29
30
{
"compilerOptions": {
"baseUrl": ".",
"target": "es2020",
"module": "esnext",
"moduleResolution": "node",
"lib": ["dom", "dom.iterable", "esnext"],
"jsx": "react-jsx",
"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"]
}