Files
coldemailer/tsconfig.scripts.json
2025-03-25 06:19:44 +01:00

11 lines
355 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
// If you want to compile to CommonJS and keep it simple:
"module": "CommonJS",
// or if you prefer ESM, do "module": "ESNext" or "module": "NodeNext",
// but often CommonJS is simpler for scripts.
"outDir": "dist-scripts",
"noEmit": true
}
}