Glen Whitney
047385d56b
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>
21 lines
592 B
JSON
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/**/*"]
|
|
}
|