math5/tsconfig.json

19 lines
478 B
JSON
Raw Permalink Normal View History

{
"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"]
},
"plugins": [
{ "transform": "ts-macros" }
],
"rootDir": "./src",
"target": "esnext",
"types": ["node"]
}
}