2024-09-29 20:48:06 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"declaration": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"outDir": "./build",
|
|
|
|
"paths": {
|
|
|
|
"@/*": ["./src/*"],
|
2024-09-30 05:10:09 +00:00
|
|
|
"ts-macros": ["./node_modules/ts-macros/dist/index.js"],
|
2024-10-28 22:34:55 +00:00
|
|
|
"undici-types": ["./node_modules/undici-types/index.d.ts"],
|
|
|
|
"vitest": ["./node_modules/vitest/dist/index.js"],
|
2024-09-29 20:48:06 +00:00
|
|
|
},
|
2024-09-30 05:10:09 +00:00
|
|
|
"plugins": [
|
|
|
|
{ "transform": "ts-macros" }
|
|
|
|
],
|
2024-09-29 20:48:06 +00:00
|
|
|
"rootDir": "./src",
|
|
|
|
"target": "esnext",
|
2024-10-28 22:34:55 +00:00
|
|
|
"types": ["node", "vitest/importMeta"]
|
|
|
|
},
|
|
|
|
"include": ["src/**/*"]
|
2024-09-29 20:48:06 +00:00
|
|
|
}
|