]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/tsconfig.json
Add ability to sort by originallyPublishedAt
[github/Chocobozzz/PeerTube.git] / client / tsconfig.json
index f99c5d87d47f1f3a63fddfe9b29dc6c135e87c35..d9e798f91ac053363ef367599a17fac75273fc7f 100644 (file)
       "node_modules/@types"
     ],
     "lib": [
-      "es2017",
-      "es2016",
-      "es2015",
+      "es2018",
       "dom"
     ],
-    "types": [
-      "jasmine"
-    ],
-    "baseUrl": "src",
+    "baseUrl": "./",
     "paths": {
-      "@app/*": [ "app/*" ],
-      "@shared/*": [ "../../shared/*" ],
-      "video.js": [ "../node_modules/video.js/dist/alt/video.core.js" ],
-      "fs": [ "./shims/noop" ],
-      "http": [ "./shims/http" ],
-      "https": [ "./shims/https" ],
-      "path": [ "./shims/path" ],
-      "stream": [ "./shims/noop" ],
-      "crypto": [ "./shims/noop" ]
+      "@app/*": [ "src/app/*" ],
+      "@shared/*": [ "../shared/*" ],
+      "fs": [ "src/shims/noop.ts" ],
+      "http": [ "src/shims/http.ts" ],
+      "https": [ "src/shims/https.ts" ],
+      "path": [ "src/shims/path.ts" ],
+      "stream": [ "src/shims/noop.ts" ],
+      "crypto": [ "src/shims/noop.ts" ]
     }
   },
   "angularCompilerOptions": {
     "strictInjectionParameters": true,
-    "fullTemplateTypeCheck": true
-  },
-  "include": [
-    "./src",
-    "../../shared"
-  ],
-  "exclude": [
-    "../../node_modules",
-    "../node_modules",
-    "../dist",
-    "../../server",
-    "../src/**/*.spec.ts"
-  ]
+    "fullTemplateTypeCheck": true,
+    "strictTemplates": true
+  }
 }