]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/helpers/register-ts-paths.ts
Remove octet stream fallback for video extension
[github/Chocobozzz/PeerTube.git] / server / helpers / register-ts-paths.ts
1 import { resolve } from 'path'
2 const tsConfigPaths = require('tsconfig-paths')
3
4 const tsConfig = require('../../tsconfig.json')
5
6 function registerTSPaths () {
7 // Thanks: https://github.com/dividab/tsconfig-paths/issues/75#issuecomment-458936883
8 tsConfigPaths.register({
9 baseUrl: resolve(tsConfig.compilerOptions.baseUrl || '', tsConfig.compilerOptions.outDir || ''),
10 paths: tsConfig.compilerOptions.paths
11 })
12 }
13
14 export {
15 registerTSPaths
16 }