-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (22 loc) · 767 Bytes
/
tsconfig.json
File metadata and controls
30 lines (22 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"compilerOptions": {
// Specify module code generation: CommonJS for Node.js
"module": "commonjs",
// Target modern JavaScript syntax: ES2020
"target": "es2020",
// Include Node.js type definitions (fs, http, etc.)
"types": ["node"],
// Generate source maps for debugging
"sourceMap": true,
// Output directory for compiled JavaScript
"outDir": "./dist",
// Enable all strict type checking options
"strict": true,
// Enable experimental decorators (required for TypeGraphQL)
"experimentalDecorators": true,
// Emit metadata for decorators (required for TypeGraphQL)
"emitDecoratorMetadata": true,
// Skip type checking of declaration files in node_modules
"skipLibCheck": true
}
}