proj-dash-backend/tsconfig.json
lijiayang050403 57f964744f feat: up
2025-10-24 04:55:08 +00:00

19 lines
561 B
JSON

{
"compilerOptions": {
"target": "ES2020", // More modern target
"module": "commonjs",
"strict": true, // Enable all strict type-checking options
"esModuleInterop": true,
"skipLibCheck": true, // Skip type checking of declaration files
"forceConsistentCasingInFileNames": true,
"outDir": "./dist",
"rootDir": "./src",
"sourceMap": true
},
"include": [
"src/**/*.ts", // Include all .ts files in the src directory
"src/types/**/*.d.ts" // Include our custom type definitions
],
"exclude": ["node_modules"]
}