create-cf-planetscale-app
Version:
Create a Cloudflare workers app for building production ready RESTful APIs using Hono
23 lines (22 loc) • 502 B
JSON
{
"compilerOptions": {
"allowJs": true,
"target": "esnext",
"lib": ["esnext"],
"moduleResolution": "bundler",
"resolveJsonModule": true,
"inlineSourceMap": true,
"module": "esnext",
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"strict": true,
"noImplicitAny": true,
"noEmit": true,
"skipLibCheck": true
},
"ts-node": {
"transpileOnly": true
},
"include": ["./src/**/*", "bindings.d.ts"]
}