-
Notifications
You must be signed in to change notification settings - Fork 13
/
tsconfig.json
17 lines (17 loc) · 941 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"compilerOptions": {
"target": "ES2022", // Target latest ECMAScript version
"module": "ESNext", // Use the latest module system
"declaration": true, // Generate declaration files
"outDir": "./dist", // Output directory for compiled files
"rootDir": "./src", // Root directory of input files
"sourceMap": true, // Generate source maps
"strict": true, // Enable all strict type-checking options
"removeComments": true, // Remove comments from the output
"esModuleInterop": true, // Enable interoperability between CommonJS and ES Modules
"skipLibCheck": true, // Skip type checking of declaration files
"forceConsistentCasingInFileNames": true // Ensure consistent casing in file names
},
"include": ["src/**/*"], // Include all TypeScript files in the src directory
"exclude": ["node_modules", "dist", "tests"] // Exclude node_modules and dist directories
}