18 lines
346 B
JSON
18 lines
346 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "CommonJS",
|
|
"outDir": "dist",
|
|
"types": ["vitest", "node", "@testing-library/react"]
|
|
},
|
|
"include": [
|
|
"**/*.spec.ts",
|
|
"**/*.spec.tsx",
|
|
"**/*.test.ts",
|
|
"**/*.test.tsx",
|
|
"**/*.d.ts",
|
|
"./src/testing/**/*.ts",
|
|
"./src/testing/**/*.tsx"
|
|
]
|
|
}
|