-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
17 lines (17 loc) · 1.04 KB
/
tsconfig.json
File metadata and controls
17 lines (17 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"compilerOptions": {
"target": "ES2021", // Specify ECMAScript target version
"module": "ESNext", // Use ES module system
"moduleResolution": "node", // Specify module resolution strategy
"esModuleInterop": true, // Enable interoperability between CommonJS and ES Modules
"forceConsistentCasingInFileNames": true, // Enforce consistent casing in file names
"strict": true, // Enable all strict type-checking options
"skipLibCheck": true, // Skip type checking of declaration files
"outDir": "./dist", // Output directory
"rootDir": "./src", // Root directory of source files
"declaration": true, // Generate declaration files
"sourceMap": true // Generate source map files
},
"include": ["src"], // Included files and directories
"exclude": ["node_modules", "dist", "src/templates"] // Exclude files and directories
}