]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - tsconfig.json
Don't manage remote channels
[github/Chocobozzz/PeerTube.git] / tsconfig.json
index e23c8eed1c487cd8835d12044dbf5ea5cc0af140..993acf81d43f03ad3efd868f2c47aacd1f7dc14d 100644 (file)
@@ -1,41 +1,21 @@
 {
+  "extends": "./tsconfig.base.json",
   "compilerOptions": {
-    "module": "commonjs",
-    "target": "es2015",
-    "noImplicitAny": false,
-    "sourceMap": false,
-    "experimentalDecorators": true,
-    "emitDecoratorMetadata": true,
-    "removeComments": true,
-    "outDir": "./dist",
-    "lib": [
-      "dom",
-      "es2015",
-      "es2016",
-      "es2017"
-    ],
-    "typeRoots": [
-      "node_modules/sitemap/node_modules/@types",
-      "node_modules/@types",
-      "server/typings"
-    ],
+    "outDir": "./dist/",
     "baseUrl": "./",
     "paths": {
       "@server/*": [ "server/*" ],
       "@shared/*": [ "shared/*" ]
-    }
+    },
+    "typeRoots": [
+      "server/typings",
+      "node_modules/@types"
+    ]
   },
-  "exclude": [
-    "server/tools/",
-    "node_modules",
-    "dist",
-    "storage",
-    "client",
-    "test1",
-    "test2",
-    "test3",
-    "test4",
-    "test5",
-    "test6"
-  ]
+  "references": [
+    { "path": "./shared" },
+    { "path": "./server" },
+    { "path": "./scripts" }
+  ],
+  "files": [ "server.ts", "server/types/express.d.ts" ]
 }