aboutsummaryrefslogtreecommitdiffhomepage
path: root/tsconfig.eslint.json
blob: c2e86817355c3a54260caf3f9eb9168b7fc696e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
  "extends": "./tsconfig.base.json",
  "compilerOptions": {
    "outDir": "./dist/",
    "baseUrl": "./",
    "paths": {
      "@server/*": [ "server/*" ]
    },
    "typeRoots": [
      "node_modules/@types"
    ]
  },
  "include": [
    "./server.ts",
    "server/**/*.ts",
    "packages/**/*.ts",
    "apps/**/*.ts",
    "scripts/**/*.ts"
  ],
  "references": [
    { "path": "./server" },
    { "path": "./scripts" },
    { "path": "./apps/peertube-runner" },
    { "path": "./apps/peertube-cli" },
    { "path": "./packages/core-utils" },
    { "path": "./packages/ffmpeg" },
    { "path": "./packages/models" },
    { "path": "./packages/node-utils" },
    { "path": "./packages/server-commands" },
    { "path": "./packages/typescript-utils" }
  ]
}