aboutsummaryrefslogtreecommitdiffhomepage
path: root/tsconfig.eslint.json
diff options
context:
space:
mode:
Diffstat (limited to 'tsconfig.eslint.json')
-rw-r--r--tsconfig.eslint.json32
1 files changed, 32 insertions, 0 deletions
diff --git a/tsconfig.eslint.json b/tsconfig.eslint.json
new file mode 100644
index 000000000..c2e868173
--- /dev/null
+++ b/tsconfig.eslint.json
@@ -0,0 +1,32 @@
1{
2 "extends": "./tsconfig.base.json",
3 "compilerOptions": {
4 "outDir": "./dist/",
5 "baseUrl": "./",
6 "paths": {
7 "@server/*": [ "server/*" ]
8 },
9 "typeRoots": [
10 "node_modules/@types"
11 ]
12 },
13 "include": [
14 "./server.ts",
15 "server/**/*.ts",
16 "packages/**/*.ts",
17 "apps/**/*.ts",
18 "scripts/**/*.ts"
19 ],
20 "references": [
21 { "path": "./server" },
22 { "path": "./scripts" },
23 { "path": "./apps/peertube-runner" },
24 { "path": "./apps/peertube-cli" },
25 { "path": "./packages/core-utils" },
26 { "path": "./packages/ffmpeg" },
27 { "path": "./packages/models" },
28 { "path": "./packages/node-utils" },
29 { "path": "./packages/server-commands" },
30 { "path": "./packages/typescript-utils" }
31 ]
32}