1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-16 06:39:50 +00:00

feat: Move internals to bunJS (#459)

This commit is contained in:
2024-01-03 00:40:03 +01:00
committed by GitHub
parent f8c1d7dce9
commit 034b7e2cec
14 changed files with 95 additions and 4359 deletions

View File

@ -1,10 +1,23 @@
{
"include": ["data", "server/compiler", "interfaces.d.ts"],
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"lib": ["ESNext"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"skipLibCheck": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true
"resolveJsonModule": true,
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
// disabled because it would produce too much errors
"verbatimModuleSyntax": false,
"noEmit": true,
}
}