diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 00000000..460d0d27 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,14 @@ +{ + "compilerOptions": { + "target": "ES2020", // Specify ECMAScript target version + "module": "commonjs", // Specify module code generation + "outDir": "./dist", // Output directory for compiled files + "rootDir": "./src", // Root directory of source files + "strict": true, // Enable strict type-checking options + "esModuleInterop": true, // Enables ES module interop + "skipLibCheck": true, // Skip type checking of declaration files + "forceConsistentCasingInFileNames": true // Disallow inconsistently-cased references to the same file + }, + "include": ["src/**/*.ts"], // Source files to be compiled + "exclude": ["node_modules"] // Exclude node_modules from compilation +}