21 lines
463 B
JSON
21 lines
463 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "NodeNext",
|
|
"strict": true,
|
|
"verbatimModuleSyntax": true,
|
|
"skipLibCheck": true,
|
|
"types": ["node"],
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "hono/jsx",
|
|
"outDir": "./dist",
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"allowImportingTsExtensions": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules"]
|
|
}
|