library-picturebook-activity/backend/tsconfig.json

27 lines
646 B
JSON
Raw Permalink Normal View History

2025-11-23 14:04:20 +08:00
{
"compilerOptions": {
"module": "commonjs",
2025-12-09 11:10:36 +08:00
"moduleResolution": "node",
2025-11-23 14:04:20 +08:00
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ES2021",
2025-12-09 11:10:36 +08:00
"lib": ["ES2021"],
2025-11-23 14:04:20 +08:00
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": false,
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false,
"paths": {
"@/*": ["src/*"]
}
}
}