-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
28 lines (28 loc) · 897 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
{
"compilerOptions": {
"jsx": "react",
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Node",
"strict": true,
"noImplicitAny": true,
"allowJs": true,
"noEmit": true,
"noUnusedLocals": true,
"resolveJsonModule": true,
"types": ["node"],
"paths": {
"remix-kit": ["./packages/remix-cli/src/cli"],
"@remix-kit/kit": ["./packages/remix-kit/src/index"],
"@remix-kit/react": ["./packages/remix-react/src/index"],
"@remix-kit/react/setup": ["./packages/remix-react/src/setup"],
"@remix-kit/schema": ["./packages/remix-schema/src/index"],
"@remix-kit/vite": ["./packages/remix-vite/src/index"],
"@remix-kit/vue": ["./packages/remix-vue/src/index"]
}
},
"exclude": ["**/dist/**", "**/docs/**"]
}