multi-downloader-nx_mirror/tsconfig.json
AnimeDL 4b0265c4f6 Update Deps & Fix Docker(?)
This also consequently breaks the program on NodeJS <18 (which we already listed as the official minimum, now it's just enforced)
2025-04-19 09:53:20 -07:00

20 lines
No EOL
395 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"outDir": "./lib",
"strict": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"downlevelIteration": true,
"jsx": "react"
},
"exclude": [
"./videos",
"./tsc.ts",
"lib/**/*",
"gui/react/**/*"
]
}