factuges_2025/modules/invoices/tsconfig.json

18 lines
368 B
JSON
Raw Normal View History

2025-04-27 20:47:47 +00:00
{
"extends": "@repo/typescript-config/base.json",
"compilerOptions": {
2025-04-28 09:54:29 +00:00
"sourceMap": true,
2025-04-27 20:47:47 +00:00
"outDir": "./dist",
"rootDir": "./src",
"types": ["node", "jest"],
"baseUrl": "./",
"paths": {
"#/*": ["./src/*"]
}
},
"files": ["src/index.ts"],
"include": ["src/index.ts"],
"exclude": ["node_modules", "dist", "**/*/__tests__"]
}