mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-11 05:02:37 +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/*"],
|
|
},
|
|
});
|