]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - tsconfig.base.json
More specific message when signup is not allowed
[github/Chocobozzz/PeerTube.git] / tsconfig.base.json
index ef86b97975f18a822d45ddf489789dd2ae25f5b3..18ba8f06c8db39f69fcceba5c543760ee996dae1 100644 (file)
@@ -3,33 +3,36 @@
     "module": "commonjs",
     "target": "es2015",
     "noImplicitAny": false,
-    "sourceMap": false,
+    "sourceMap": true,
     "experimentalDecorators": true,
     "emitDecoratorMetadata": true,
     "importHelpers": true,
     "removeComments": true,
-    "strictBindCallApply": true,
     "esModuleInterop": true,
     "forceConsistentCasingInFileNames": true,
     "lib": [
+      "dom",
       "es2015",
       "es2016",
       "es2017",
       "es2018",
       "es2019"
     ],
-    "typeRoots": [
-      "node_modules/@types",
-    ],
     "baseUrl": "./",
-    "outDir": "./dist/",
     "paths": {
       "@server/*": [ "server/*" ],
-      "@shared/*": [ "shared/*" ]
+      "@shared/*": [ "shared/*" ],
+      "@client/*": [ "client/src/*" ]
     },
     "resolveJsonModule": true,
     "strict": false,
+    "strictBindCallApply": true,
+    "allowUnreachableCode": false,
+    "allowUnusedLabels": false,
+    "noFallthroughCasesInSwitch": true,
+    "noUnusedLocals": true,
     "skipLibCheck": true,
-    "composite": true
+    "composite": true,
+    "declarationMap": true
   }
 }