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