2025-08-20 18:02:50 +09:00
|
|
|
{
|
2025-09-19 16:34:10 +09:00
|
|
|
"extends": "../../tsconfig.base.json",
|
2025-08-20 18:02:50 +09:00
|
|
|
"compilerOptions": {
|
2025-12-10 13:59:41 +09:00
|
|
|
"module": "CommonJS",
|
|
|
|
|
"moduleResolution": "Node",
|
2025-10-08 18:48:14 +09:00
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"strictPropertyInitialization": false,
|
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-10 13:59:41 +09:00
|
|
|
"types": ["node", "jest"]
|
2025-08-20 18:02:50 +09:00
|
|
|
},
|
2025-09-19 16:34:10 +09:00
|
|
|
"ts-node": {
|
|
|
|
|
"transpileOnly": true,
|
|
|
|
|
"compilerOptions": {
|
2025-12-10 13:59:41 +09:00
|
|
|
"module": "CommonJS"
|
2025-09-19 16:34:10 +09:00
|
|
|
}
|
|
|
|
|
},
|
2025-12-10 13:59:41 +09:00
|
|
|
"include": ["src/**/*", "test/**/*"],
|
|
|
|
|
"exclude": ["node_modules", "dist", "prisma"]
|
2025-09-01 15:11:42 +09:00
|
|
|
}
|