mirror of
https://github.com/wu736139669/hapi.git
synced 2026-08-05 06:24:37 +00:00
32 lines
475 B
JSON
32 lines
475 B
JSON
{
|
|
"extends": "../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"lib": [
|
|
"es2020",
|
|
"es2022"
|
|
],
|
|
"jsx": "react",
|
|
"rootDir": "src",
|
|
"experimentalDecorators": true,
|
|
"outDir": "dist",
|
|
"noEmit": true,
|
|
"types": [
|
|
"node",
|
|
"bun-types"
|
|
],
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
],
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.d.ts"
|
|
]
|
|
}
|