-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathtsconfig.json
More file actions
21 lines (19 loc) · 610 Bytes
/
tsconfig.json
File metadata and controls
21 lines (19 loc) · 610 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"compilerOptions": {
"target": "es2022",
"module": "CommonJS",
"outDir": "build",
"rootDir": "src",
"strict": true,
"esModuleInterop": true,
"moduleResolution": "node",
/* Experimental Options */
"experimentalDecorators": true /* Enables experimental support for ES7 decorators. */,
"emitDecoratorMetadata": true /* Enables experimental support for emitting type metadata for decorators. */,
/* Advanced Options */
"skipLibCheck": false,
"forceConsistentCasingInFileNames": true
},
"include": ["src/**/*"],
"exclude": ["build", "node_modules"]
}