Files
colanode/apps/web/test/tsconfig.json
Ylber Gashi 075c835286 Web: add test setup and first tests (#313)
* test(server): add vitest harness and initial integration tests
* add web test setup and initial tests
2026-02-09 15:24:22 +01:00

13 lines
315 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Web Tests",
"extends": "../tsconfig.json",
"compilerOptions": {
"noEmit": true,
"baseUrl": "..",
"rootDir": "../../..",
"types": ["vitest/globals", "@testing-library/jest-dom"]
},
"include": ["./**/*.ts", "./**/*.tsx"]
}