Files

27 lines
649 B
JSON
Raw Permalink Normal View History

2026-03-10 15:11:55 +08:00
{
"compilerOptions": {
"module": "nodenext",
"moduleResolution": "nodenext",
"resolvePackageJsonExports": true,
"esModuleInterop": true,
"isolatedModules": true,
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ES2023",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strict": true,
2026-03-10 15:11:55 +08:00
"forceConsistentCasingInFileNames": true,
2026-03-11 14:01:45 +08:00
"noFallthroughCasesInSwitch": true,
2026-03-10 15:44:27 +08:00
"paths": {
"@/*": ["src/*"]
}
2026-03-10 15:11:55 +08:00
}
}