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",
"module": "ES2022",
"moduleResolution": "node",
"types": [
"bun-types"
],
"types": ["bun-types"],
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
"skipLibCheck": true,
"noErrorTruncation": true
}
}