type-fest/tsconfig.json
copilot-swe-agent[bot] 501d859146 Add TypeDoc documentation generation with GitHub Pages workflow
Co-authored-by: fregante <1402241+fregante@users.noreply.github.com>
2025-10-20 11:33:03 +00:00

16 lines
509 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.
},
"exclude": [
"docs"
]
}