Server/project/tsconfig.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

27 lines
521 B
JSON

{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"resolveJsonModule": true,
"outDir": "obj",
"declaration": true,
"baseUrl": ".",
"paths": {
"@spt-aki/*": [
"src/*"
],
"@tests/*": [
"tests/*"
]
}
},
"include": [
"./src/**/*",
"./tests/**/*",
"./types/**/*",
"./user/mods/**/*"
],
"exclude": [
"./user/mods/**/*"
]
}