-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
19 lines (19 loc) · 986 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"compilerOptions": {
"target": "ESNext", // Target latest ECMAScript version
"module": "ESNext", // Use ESNext module system (for dynamic imports)
"moduleResolution": "node", // Use Node.js-style module resolution
"strict": true, // Enable all strict type-checking options
"esModuleInterop": true, // Enables CommonJS/AMD/UMD module interop
"skipLibCheck": true, // Skip type checking of declaration files
"forceConsistentCasingInFileNames": true, // Disallow inconsistently-cased references to the same file
"outDir": "./dist", // Output directory for compiled files
"declaration": true, // Generate corresponding .d.ts file for each output .js file
"sourceMap": true, // Generate source maps for easier debugging
"jsx": "react-jsx"
},
"include": [ "src/**/*" ],
"exclude": [
"node_modules" // Exclude node_modules
]
}