-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
21 lines (20 loc) · 875 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"compilerOptions": {
"lib": [
"ES2020",
"ES2015",
"dom"
], // Array of library files to be included in the compilation
"target": "ES2020", // Or a higher ECMAScript version you prefer
"module": "CommonJS", // Or other module types you want to use
"outDir": "./dist", // Output directory for compiled JavaScript files
"strict": true, // Enforce strict type checking
"esModuleInterop": true, // Enable interoperability between CommonJS and ES6 modules
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"declaration": true
},
"include": ["src"], // Array of directories or files to include in compilation
"exclude": ["./node_modules"]
}