tools/tsconfig.json
2025-10-16 22:04:44 +05:00

14 lines
324 B
JSON

{
"compilerOptions": {
"target": "ES2018",
"module": "CommonJS",
"declaration": true,
"outDir": "./dist",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "tests"]
}