-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathtsconfig.json
32 lines (32 loc) · 909 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
31
32
{
"include": ["./**/*.d.ts", "./**/*.ts", "./**/*.tsx"],
"exclude": ["node_modules", "dist"],
"compilerOptions": {
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"isolatedModules": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"module": "ESNext",
"target": "ES2022",
"strict": true,
"allowJs": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"baseUrl": ".",
"types": [
"@remix-run/node",
"vite/client",
"@shopify/oxygen-workers-types",
"@types/gtag.js",
"@types/grecaptcha"
],
"paths": {
"~/*": ["app/*"]
},
// Remix takes care of building everything in `./app` with `remix build`.
// Wrangler takes care of building everything in `./worker` with `wrangler start` / `wrangler publish`.
"noEmit": true
}
}