2026-03-17 22:07:19 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2020",
|
2026-03-27 16:56:06 +08:00
|
|
|
"module": "commonjs",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"allowJs": true,
|
2026-03-17 22:07:19 +08:00
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2026-03-27 16:56:06 +08:00
|
|
|
"strict": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"outDir": "./dist",
|
|
|
|
|
"rootDir": "./src",
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"baseUrl": "./src",
|
2026-03-17 22:07:19 +08:00
|
|
|
"paths": {
|
2026-03-27 16:56:06 +08:00
|
|
|
"@/*": ["*"]
|
2026-03-20 09:43:50 +08:00
|
|
|
},
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"emitDecoratorMetadata": true,
|
2026-03-27 16:56:06 +08:00
|
|
|
"typeRoots": ["./node_modules/@types", "./src/types"]
|
2026-03-17 22:07:19 +08:00
|
|
|
},
|
2026-03-27 16:56:06 +08:00
|
|
|
"include": [
|
|
|
|
|
"src/**/*"
|
|
|
|
|
],
|
|
|
|
|
"exclude": [
|
|
|
|
|
"node_modules",
|
|
|
|
|
"dist"
|
|
|
|
|
]
|
|
|
|
|
}
|