13 lines
320 B
JSON
13 lines
320 B
JSON
{
|
|
"extends": "../tsconfig/react-library.json",
|
|
"include": ["."],
|
|
"exclude": [
|
|
"dist",
|
|
"build",
|
|
"node_modules",
|
|
"**/*.test.ts", // Exclude TypeScript test files
|
|
"**/*.test.tsx", // Exclude TypeScript React test files
|
|
"**/__tests__/*" // Exclude any files inside a __tests__ directory
|
|
]
|
|
}
|