This commit is contained in:
Baobhan Sith
2025-04-14 22:51:05 +08:00
parent 286492fc63
commit a974b8b1d9
49 changed files with 13954 additions and 0 deletions
+16
View File
@@ -0,0 +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
},
"include": ["src/**/*"], // Include all files in the src directory
"exclude": ["node_modules", "dist"] // Exclude node_modules and dist
}