multi-downloader-nx/tsconfig.json
2023-07-15 15:09:06 -07:00

20 lines
No EOL
392 B
JSON

{
"compilerOptions": {
"target": "ES6",
"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/**/*"
]
}