retag-nix-docker-image/tsconfig.base.json
Lucien Cartier-Tilet bad7aa8d3d
Some checks failed
Check Transpiled JavaScript / Check dist/ (push) Successful in 1m0s
Continuous Integration / TypeScript Tests (push) Successful in 1m1s
Continuous Integration / GitHub Actions Test (push) Successful in 17s
Lint Codebase / Lint Codebase (push) Failing after 1m7s
Initial commit
2025-01-19 18:45:07 +01:00

24 lines
597 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"declaration": true,
"declarationMap": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"lib": ["ES2022"],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"newLine": "lf",
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": false,
"pretty": true,
"resolveJsonModule": true,
"sourceMap": true,
"strict": true,
"strictNullChecks": true,
"target": "ES2022"
}
}