-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
15 lines (14 loc) · 911 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"compilerOptions": {
"target": "ES2018", // Set the target ECMAScript version
"module": "commonjs", // Specify module code generation
"declaration": true, // Generate declaration files
"outDir": "./dist", // Redirect output structure to the 'dist' folder
"rootDir": "./src", // Specify the root directory of input files
"strict": true, // Enable all strict type checking options
"esModuleInterop": true, // Enables emit interoperability between CommonJS and ES Modules
"skipLibCheck": true // Skip type checking of declaration files
},
"include": ["src/**/*"], // Include all TypeScript files in the src folder
"exclude": ["node_modules"] // Exclude node_modules
}