2025-08-20 18:02:50 +09:00
|
|
|
{
|
2025-12-12 14:50:12 +09:00
|
|
|
"extends": "../../tsconfig.node.json",
|
2025-08-20 18:02:50 +09:00
|
|
|
"compilerOptions": {
|
2025-12-10 16:08:34 +09:00
|
|
|
"verbatimModuleSyntax": true,
|
2025-10-08 18:48:14 +09:00
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"strictPropertyInitialization": false,
|
2025-12-12 14:35:19 +09:00
|
|
|
"composite": true,
|
|
|
|
|
"tsBuildInfoFile": ".typecheck/tsconfig.tsbuildinfo",
|
2025-09-19 16:34:10 +09:00
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["src/*"],
|
2025-12-10 13:59:41 +09:00
|
|
|
"@bff/*": ["src/*"]
|
2025-09-19 16:34:10 +09:00
|
|
|
},
|
2025-10-08 18:48:14 +09:00
|
|
|
"noEmit": true,
|
2025-12-12 11:47:17 +09:00
|
|
|
"types": ["node"]
|
2025-08-20 18:02:50 +09:00
|
|
|
},
|
2025-12-25 15:48:57 +09:00
|
|
|
"include": ["src/**/*.ts"],
|
2025-12-12 11:47:17 +09:00
|
|
|
"exclude": ["node_modules", "dist", "prisma", "test", "**/*.spec.ts", "**/*.test.ts"]
|
2025-09-01 15:11:42 +09:00
|
|
|
}
|