Disable ts truncations

This commit is contained in:
Zoe Roux 2024-11-15 23:45:15 +01:00
parent c5972bd15f
commit 7ca441aaae
No known key found for this signature in database

View File

@ -3,12 +3,11 @@
"target": "ES2021", "target": "ES2021",
"module": "ES2022", "module": "ES2022",
"moduleResolution": "node", "moduleResolution": "node",
"types": [ "types": ["bun-types"],
"bun-types"
],
"esModuleInterop": true, "esModuleInterop": true,
"forceConsistentCasingInFileNames": true, "forceConsistentCasingInFileNames": true,
"strict": true, "strict": true,
"skipLibCheck": true "skipLibCheck": true,
"noErrorTruncation": true
} }
} }