mirror of
https://github.com/colanode/colanode.git
synced 2026-02-24 20:09:45 +01:00
* test(server): add vitest harness and initial integration tests * add web test setup and initial tests
13 lines
315 B
JSON
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"]
|
|
}
|