Files
ni-mail/tsconfig.json
2026-04-25 16:14:32 +08:00

16 lines
398 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"skipLibCheck": true,
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"types": [],
"baseUrl": ".",
// Local JS emission only; Cloudflare deploys from wrangler.jsonc -> src/index.ts.
"outDir": "dist"
},
"include": ["src/**/*.ts", "src/**/*.d.ts"]
}