Files
kittyBE/tsconfig.json
sherl 518eeec8e8
All checks were successful
Update changelog / changelog (push) Successful in 25s
fix: bigint type confusion
2026-01-03 12:02:03 +01:00

19 lines
477 B
JSON

{
"compilerOptions": {
"lib": [
"es2021"
],
"types": ["node"],
"target": "esnext",
"module": "commonjs",
"moduleResolution": "node",
"outDir": "./build",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"strict": true,
"strictPropertyInitialization": false
}
}