anum-frontend/tsconfig.cloudflare.json
Xory 475596444a Initialize web application via create-cloudflare CLI
Details:
  C3 = create-cloudflare@2.62.0
  project name = anum-frontend
  framework = react-router
  framework cli = create-react-router@7.9.6
  package manager = pnpm@10.26.1
  wrangler = wrangler@4.57.0
  git = 2.52.0
2026-01-07 19:29:42 +02:00

28 lines
637 B
JSON

{
"extends": "./tsconfig.json",
"include": [
".react-router/types/**/*",
"app/**/*",
"app/**/.server/**/*",
"app/**/.client/**/*",
"workers/**/*",
"worker-configuration.d.ts"
],
"compilerOptions": {
"composite": true,
"strict": true,
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"types": ["vite/client"],
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"baseUrl": ".",
"rootDirs": [".", "./.react-router/types"],
"paths": {
"~/*": ["./app/*"]
},
"esModuleInterop": true,
"resolveJsonModule": true
}
}