-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
22 lines (22 loc) · 772 Bytes
/
tsconfig.json
File metadata and controls
22 lines (22 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"compilerOptions": {
"target": "ES2020",
"module": "CommonJS",
"outDir": "./dist",
"rootDir": "./services",
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true
},
"include": [
"services/**/*.ts", // Include all services TypeScript files
"shared/**/*.ts", // Include shared utilities
"infra/**/*.ts" // Include infrastructure setup
],
"exclude": [
"node_modules", // Exclude dependencies
"dist", // Exclude compiled files
"**/*.test.ts" // Exclude test files from compilation
]
}