mirror of
https://github.com/mskatoni/ni-mail.git
synced 2026-07-13 16:33:21 +08:00
16 lines
398 B
JSON
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"]
|
|
}
|