aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-08-27 16:42:17 +0200
committerChocobozzz <me@florianbigard.com>2021-08-30 09:37:18 +0200
commite874edd9f876df7b4020137b3a9b7feb8078b38f (patch)
tree53b0b7c0013d88f7af966f6fd833585a634e7c3f
parent94b13cf4b3e245a3594193f1fa59f2333aedb19e (diff)
downloadPeerTube-e874edd9f876df7b4020137b3a9b7feb8078b38f.tar.gz
PeerTube-e874edd9f876df7b4020137b3a9b7feb8078b38f.tar.zst
PeerTube-e874edd9f876df7b4020137b3a9b7feb8078b38f.zip
forceConsistentCasingInFileNames to true
-rw-r--r--server/controllers/tracker.ts2
-rw-r--r--server/helpers/core-utils.ts5
-rw-r--r--tsconfig.json2
3 files changed, 5 insertions, 4 deletions
diff --git a/server/controllers/tracker.ts b/server/controllers/tracker.ts
index da9c68c6c..6d60639b8 100644
--- a/server/controllers/tracker.ts
+++ b/server/controllers/tracker.ts
@@ -2,7 +2,7 @@ import { Server as TrackerServer } from 'bittorrent-tracker'
2import express from 'express' 2import express from 'express'
3import { createServer } from 'http' 3import { createServer } from 'http'
4import proxyAddr from 'proxy-addr' 4import proxyAddr from 'proxy-addr'
5import { Server as WebSocketServer } from 'ws' 5import { WebSocketServer } from 'ws'
6import { Redis } from '@server/lib/redis' 6import { Redis } from '@server/lib/redis'
7import { logger } from '../helpers/logger' 7import { logger } from '../helpers/logger'
8import { CONFIG } from '../initializers/config' 8import { CONFIG } from '../initializers/config'
diff --git a/server/helpers/core-utils.ts b/server/helpers/core-utils.ts
index 7f28cfc8b..2cbf0f8fe 100644
--- a/server/helpers/core-utils.ts
+++ b/server/helpers/core-utils.ts
@@ -164,9 +164,10 @@ let rootPath: string
164function root () { 164function root () {
165 if (rootPath) return rootPath 165 if (rootPath) return rootPath
166 166
167 // We are in /helpers/utils.js 167 rootPath = __dirname
168 rootPath = join(__dirname, '..', '..')
169 168
169 if (basename(rootPath) === 'helpers') rootPath = resolve(rootPath, '..')
170 if (basename(rootPath) === 'server') rootPath = resolve(rootPath, '..')
170 if (basename(rootPath) === 'dist') rootPath = resolve(rootPath, '..') 171 if (basename(rootPath) === 'dist') rootPath = resolve(rootPath, '..')
171 172
172 return rootPath 173 return rootPath
diff --git a/tsconfig.json b/tsconfig.json
index ada13dc98..075a3d86e 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -10,6 +10,7 @@
10 "removeComments": true, 10 "removeComments": true,
11 "strictBindCallApply": true, 11 "strictBindCallApply": true,
12 "esModuleInterop": true, 12 "esModuleInterop": true,
13 "forceConsistentCasingInFileNames": true,
13 "outDir": "./dist", 14 "outDir": "./dist",
14 "lib": [ 15 "lib": [
15 "dom", 16 "dom",
@@ -20,7 +21,6 @@
20 "es2019" 21 "es2019"
21 ], 22 ],
22 "typeRoots": [ 23 "typeRoots": [
23 "node_modules/sitemap/node_modules/@types",
24 "node_modules/@types", 24 "node_modules/@types",
25 "server/typings" 25 "server/typings"
26 ], 26 ],