type-fest/tsconfig.json
2025-08-09 03:15:25 +02:00

13 lines
482 B
JSON

{
"extends": "@sindresorhus/tsconfig",
"compilerOptions": {
"noEmit": true,
"allowJs": true,
"noUnusedLocals": false, // Allow unused variables in test-d/*.ts files
"types": [], // Ensures no @types/ are unintentionally included
"exactOptionalPropertyTypes": true,
"skipLibCheck": false, // Ensures .d.ts files are checked: https://github.com/sindresorhus/tsconfig/issues/15
"erasableSyntaxOnly": false // We cannot do this as we need to be able to test enums.
}
}