first commit

This commit is contained in:
Tim Bendt
2024-04-19 14:08:59 -06:00
commit cf50f37ede
11 changed files with 6722 additions and 0 deletions

27
tsconfig.spec.json Normal file
View File

@@ -0,0 +1,27 @@
{
"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",
],
}