]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/tsconfig.json
Design confirm dialog
[github/Chocobozzz/PeerTube.git] / client / tsconfig.json
index 3b903f8c831dcb11ef5104050f237f7470c79b5b..66c7bb4443a9f60fecf74c229a02487ae8352642 100644 (file)
@@ -3,71 +3,30 @@
     "target": "es5",
     "module": "commonjs",
     "moduleResolution": "node",
-    "sourceMap": true,
     "emitDecoratorMetadata": true,
     "experimentalDecorators": true,
-    "noImplicitAny": false,
-    "noEmitHelpers": true
+    "allowSyntheticDefaultImports": true,
+    "sourceMap": true,
+    "noEmitHelpers": true,
+    "importHelpers": true,
+    "strictNullChecks": false,
+    "baseUrl": "./src",
+    "paths": [
+    ],
+    "lib": [
+      "dom",
+      "es6"
+    ]
   },
+  "exclude": [
+    "node_modules",
+    "dist"
+  ],
   "awesomeTypescriptLoaderOptions": {
-    "forkChecker": true
+    "forkChecker": true,
+    "useWebpackText": true
   },
   "compileOnSave": false,
   "buildOnSave": false,
-  "atom": {
-    "rewriteTsconfig": true
-  },
-  "filesGlob": [
-    "**/*.ts",
-    "!node_modules/**"
-  ],
-  "exclude": [
-    "node_modules",
-    "typings/main",
-    "typings/main.d.ts"
-  ],
-  "files": [
-    "src/app/app.component.ts",
-    "src/app/friends/friend.service.ts",
-    "src/app/friends/index.ts",
-    "src/app/login/index.ts",
-    "src/app/login/login.component.ts",
-    "src/app/shared/index.ts",
-    "src/app/shared/search/index.ts",
-    "src/app/shared/search/search-field.type.ts",
-    "src/app/shared/search/search.component.ts",
-    "src/app/shared/search/search.model.ts",
-    "src/app/shared/users/auth-status.model.ts",
-    "src/app/shared/users/auth.service.ts",
-    "src/app/shared/users/index.ts",
-    "src/app/shared/users/token.model.ts",
-    "src/app/shared/users/user.model.ts",
-    "src/app/videos/index.ts",
-    "src/app/videos/shared/index.ts",
-    "src/app/videos/shared/loader/index.ts",
-    "src/app/videos/shared/loader/loader.component.ts",
-    "src/app/videos/shared/pagination.model.ts",
-    "src/app/videos/shared/sort-field.type.ts",
-    "src/app/videos/shared/video.model.ts",
-    "src/app/videos/shared/video.service.ts",
-    "src/app/videos/video-add/index.ts",
-    "src/app/videos/video-add/video-add.component.ts",
-    "src/app/videos/video-list/index.ts",
-    "src/app/videos/video-list/video-list.component.ts",
-    "src/app/videos/video-list/video-miniature.component.ts",
-    "src/app/videos/video-list/video-sort.component.ts",
-    "src/app/videos/video-watch/index.ts",
-    "src/app/videos/video-watch/video-watch.component.ts",
-    "src/app/videos/video-watch/webtorrent.service.ts",
-    "src/custom-typings.d.ts",
-    "src/main.ts",
-    "src/polyfills.ts",
-    "src/vendor.ts",
-    "typings/globals/es6-shim/index.d.ts",
-    "typings/globals/jasmine/index.d.ts",
-    "typings/globals/jquery.fileupload/index.d.ts",
-    "typings/globals/jquery/index.d.ts",
-    "typings/globals/node/index.d.ts",
-    "typings/index.d.ts"
-  ]
+  "atom": { "rewriteTsconfig": false }
 }