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