28 lines
496 B
JSON
28 lines
496 B
JSON
{
|
|
"extends": "../.configs/tsconfig.node.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"resolveJsonModule": true,
|
|
"outDir": "dist/out-tsc",
|
|
"types": [
|
|
"vitest/globals",
|
|
"vitest/importMeta",
|
|
"node",
|
|
]
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
],
|
|
"include": [
|
|
"**/*.test.ts",
|
|
"**/mocks/**/*.ts",
|
|
"**/*.spec.ts",
|
|
"**/*.test.tsx",
|
|
"**/*.spec.tsx",
|
|
"**/*.test.js",
|
|
"**/*.spec.js",
|
|
"**/*.test.jsx",
|
|
"**/*.spec.jsx",
|
|
],
|
|
}
|