File size: 497 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
{
"extends": "./tsconfig.json",
// Copied from tsconfig.json to not overwrite.
"exclude": [
"dist",
"./*.d.ts",
"future/*.d.ts",
"image-types/global.d.ts",
"compat/*.d.ts",
"legacy/*.d.ts",
"types/compiled.d.ts",
"navigation-types/*.d.ts",
"navigation-types/compat/*.d.ts",
"experimental/**/*.d.ts",
// Don't generate types for internal files.
"./**/*.test.ts",
"./**/*.test.tsx",
"./**/*.stories.tsx",
"./**/storybook/**/*"
]
}
|