This commit is contained in:
Baobhan Sith
2025-04-26 15:26:14 +08:00
parent e269f40754
commit 378be55e8f
6 changed files with 135 additions and 44 deletions
+12 -12
View File
@@ -1,16 +1,16 @@
{
"compilerOptions": {
"target": "ES2016", // Or a newer target like ES2020
"module": "NodeNext", // Use NodeNext module system
"moduleResolution": "NodeNext", // Use NodeNext resolution strategy
"outDir": "./dist", // Output directory for compiled JS
"rootDir": "./src", // Root directory of source files
"esModuleInterop": true, // Enables compatibility with CommonJS modules
"forceConsistentCasingInFileNames": true, // Enforce consistent file casing
"strict": true, // Enable all strict type-checking options
"skipLibCheck": true, // Skip type checking of declaration files
"resolveJsonModule": true // Allow importing JSON files
"target": "ES2016",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "./dist",
"rootDir": "./src",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"resolveJsonModule": true
},
"include": ["src/**/*"], // Include all files in the src directory
"exclude": ["node_modules", "dist"] // Exclude node_modules and dist
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}