math5/tsconfig.json
Glen Whitney 047385d56b Enable testing with vitest (#13)
Resolves #12.

Co-authored-by: Jos de Jong <wjosdejong@gmail.com>
Reviewed-on: #13
Co-authored-by: Glen Whitney <glen@studioinfinity.org>
Co-committed-by: Glen Whitney <glen@studioinfinity.org>
2024-10-28 22:34:55 +00:00

21 lines
592 B
JSON

{
"compilerOptions": {
"declaration": true,
"module": "esnext",
"outDir": "./build",
"paths": {
"@/*": ["./src/*"],
"ts-macros": ["./node_modules/ts-macros/dist/index.js"],
"undici-types": ["./node_modules/undici-types/index.d.ts"],
"vitest": ["./node_modules/vitest/dist/index.js"],
},
"plugins": [
{ "transform": "ts-macros" }
],
"rootDir": "./src",
"target": "esnext",
"types": ["node", "vitest/importMeta"]
},
"include": ["src/**/*"]
}