aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/tsconfig.json
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-07-27 01:17:37 +0900
committernsfisis <nsfisis@gmail.com>2024-07-27 05:59:23 +0900
commit18308a22879dc9143a03bcbe53cf0c5e8e49ee1f (patch)
treec1c108e27b1c369f30670480e19082044ae1b8a0 /frontend/tsconfig.json
parente487036c5cc9f5b59e9efbaec132a2fd60896317 (diff)
downloadiosdc-japan-2025-albatross-18308a22879dc9143a03bcbe53cf0c5e8e49ee1f.tar.gz
iosdc-japan-2025-albatross-18308a22879dc9143a03bcbe53cf0c5e8e49ee1f.tar.zst
iosdc-japan-2025-albatross-18308a22879dc9143a03bcbe53cf0c5e8e49ee1f.zip
remix
Diffstat (limited to 'frontend/tsconfig.json')
-rw-r--r--frontend/tsconfig.json37
1 files changed, 29 insertions, 8 deletions
diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json
index ea9d0cd..9d87dd3 100644
--- a/frontend/tsconfig.json
+++ b/frontend/tsconfig.json
@@ -1,11 +1,32 @@
{
- "files": [],
- "references": [
- {
- "path": "./tsconfig.app.json"
+ "include": [
+ "**/*.ts",
+ "**/*.tsx",
+ "**/.server/**/*.ts",
+ "**/.server/**/*.tsx",
+ "**/.client/**/*.ts",
+ "**/.client/**/*.tsx"
+ ],
+ "compilerOptions": {
+ "lib": ["DOM", "DOM.Iterable", "ES2022"],
+ "types": ["@remix-run/node", "vite/client"],
+ "isolatedModules": true,
+ "esModuleInterop": true,
+ "jsx": "react-jsx",
+ "module": "ESNext",
+ "moduleResolution": "Bundler",
+ "resolveJsonModule": true,
+ "target": "ES2022",
+ "strict": true,
+ "allowJs": true,
+ "skipLibCheck": true,
+ "forceConsistentCasingInFileNames": true,
+ "baseUrl": ".",
+ "paths": {
+ "~/*": ["./app/*"]
},
- {
- "path": "./tsconfig.node.json"
- }
- ]
+
+ // Vite takes care of building everything, not tsc.
+ "noEmit": true
+ }
}