mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-14 06:32:36 +01:00
11 lines
256 B
JavaScript
11 lines
256 B
JavaScript
|
const tsConfigPaths = require("tsconfig-paths");
|
||
|
const path = require("path");
|
||
|
|
||
|
const cleanup = tsConfigPaths.register({
|
||
|
baseUrl: path.join(__dirname, ".."),
|
||
|
paths: {
|
||
|
"@fosscord/gateway": ["dist/index.js"],
|
||
|
"@fosscord/gateway/*": ["dist/*"],
|
||
|
},
|
||
|
});
|