1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-30 15:59:18 +00:00

chore: Add ability to comment on Prs to simplify checking cards (#729)

This commit is contained in:
2025-05-03 23:33:15 +02:00
committed by GitHub
parent b26236e78c
commit 1eb4c677a7
8 changed files with 610 additions and 6 deletions

28
.github/scripts/tsconfig.json vendored Normal file
View File

@ -0,0 +1,28 @@
{
"compilerOptions": {
// Environment setup & latest features
"lib": ["ESNext"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false
}
}