-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
16 lines (16 loc) · 937 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"compilerOptions": {
"target": "ESNext", // Compile down to a version of ECMAScript that supports ES Modules natively
"module": "ESNext", // Use native ECMAScript modules
"moduleResolution": "node", // Use Node.js module resolution mechanism
"strict": true, // Enable all strict type-checking options
"esModuleInterop": true, // Enables compatibility with CommonJS modules for default exports
"forceConsistentCasingInFileNames": true, // Ensure case sensitivity for filenames
"skipLibCheck": true, // Skip type checking of declaration files
"outDir": "./dist", // Output directory for compiled files
"declaration": true, // Generates corresponding '.d.ts' file.
"sourceMap": true // Generates corresponding '.map' file for debugging
},
"include": ["src/**/*"], // Specify which files to include in compilation
"exclude": ["node_modules", "dist"] // Exclude directories from compilation
}