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:
@ -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,
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user