mirror of
https://github.com/honojs/hono.git
synced 2024-11-21 18:18:57 +01:00
ac713c0659
* refactor: refine importing mechanism * refactor: move `CODE_OF_CONDUCT.md`
29 lines
551 B
JSON
29 lines
551 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2017",
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"outDir": "./dist",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"strictPropertyInitialization": false,
|
|
"strictNullChecks": false,
|
|
"types": [
|
|
"jest",
|
|
"node",
|
|
"@cloudflare/workers-types"
|
|
],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
]
|
|
},
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"src/**/*.test.ts"
|
|
],
|
|
} |