mirror of
https://github.com/sindresorhus/type-fest.git
synced 2026-01-25 14:57:30 +00:00
13 lines
482 B
JSON
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.
|
|
}
|
|
}
|