Files
eslint-config/tsconfig.build.json
Sebastian Brenner 1fa088cb1c
All checks were successful
Build ESLint Config on Tag / build (push) Successful in 8s
update tsconfig
2025-12-21 18:12:40 +01:00

20 lines
453 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "nodenext",
"moduleResolution": "NodeNext",
"outDir": "dist",
"rootDir": "src",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true, // ✅ important
"strict": true,
"skipLibCheck": true,
"noEmit": false,
"declaration": false,
"sourceMap": false
},
"include": ["src/index.ts"]
}