create-hest-app
Version:
Create HestJS-powered applications with one command
20 lines (19 loc) • 434 B
JSON
{
"extends": "@hestjs/typescript-config/base.json",
"compilerOptions": {
"strict": true,
"jsx": "react-jsx",
"jsxImportSource": "hono/jsx",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"outDir": "./dist",
"declaration": true,
"sourceMap": true,
"paths": {
"@/*": ["./src/*"]
}
}
}