minecraft-website/tsconfig.json
Nicholai a1c0a4aed9 Initialize web application via create-cloudflare CLI
Details:
  C3 = create-cloudflare@2.54.1
  project name = minecraft-website
  framework = next
  framework cli = create-next-app@15.4.6
  package manager = npm@11.6.2
  wrangler = wrangler@4.45.3
  git = 2.51.1
2025-11-01 20:53:56 -06:00

32 lines
672 B
JSON

{
"compilerOptions": {
"target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./src/*"]
},
"types": [
"./cloudflare-env.d.ts",
"node"
]
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}