Server/project/tsconfig.test.json
Refringe ad5e0815b6 Migrated from Jest to Vitest
Basically the same, except it plays nicer with Typescript and ESM.

I have it mostly working, except for a type error:
`TypeError: Int32Array is not a constructor`

But I'm too damn tired it debug it at the moment.
2023-10-29 22:20:32 +00:00

15 lines
293 B
JSON

{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"outDir": "obj",
"declaration": true,
"sourceMap": true,
"noImplicitAny": false,
"types": ["vitest/globals"],
},
"include": [
"./types/**/*",
"./src/**/*"
]
}