]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - tsconfig.json
Update translations
[github/Chocobozzz/PeerTube.git] / tsconfig.json
index f2985f82b1c3b408f10d18ec02068d251c2478d3..8bcd944e3cb50472021196e6b6e178947031871c 100644 (file)
@@ -1,37 +1,20 @@
 {
+  "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/@types", "server/typings" ],
+    "outDir": "./dist/",
     "baseUrl": "./",
     "paths": {
       "@server/*": [ "server/*" ],
       "@shared/*": [ "shared/*" ]
-    }
+    },
+    "typeRoots": [
+      "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", "server/types/lib.d.ts" ]
 }