summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authoryyamashita <yyamashita@mosquit.one>2026-05-08 23:37:51 +0900
committeryyamashita <yyamashita@mosquit.one>2026-05-08 23:37:51 +0900
commitd4d104cd604741ac0c308efe5050a0eec69bb389 (patch)
tree4d9becba79e83e02ae93695f71e7fe4c908803e0 /tsconfig.json
Initial scaffold: React Router v7 + SQLite + Tailwind CSS v4
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json26
1 files changed, 26 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..cbe49c7
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,26 @@
+{
+ "include": [
+ "**/*",
+ "**/.server/**/*",
+ "**/.client/**/*",
+ ".react-router/types/**/*"
+ ],
+ "compilerOptions": {
+ "lib": ["DOM", "DOM.Iterable", "ES2022"],
+ "types": ["node", "vite/client"],
+ "target": "ES2022",
+ "module": "ES2022",
+ "moduleResolution": "bundler",
+ "jsx": "react-jsx",
+ "rootDirs": [".", "./.react-router/types"],
+ "paths": {
+ "~/*": ["./app/*"]
+ },
+ "esModuleInterop": true,
+ "verbatimModuleSyntax": true,
+ "noEmit": true,
+ "resolveJsonModule": true,
+ "skipLibCheck": true,
+ "strict": true
+ }
+}