소스 검색

Exclude all in tsconfig

Andrea Condoluci 9 년 전
부모
커밋
e9ac898909
2개의 변경된 파일2개의 추가작업 그리고 8개의 파일을 삭제
  1. 1 4
      Gruntfile.js
  2. 1 4
      tsconfig.json

+ 1 - 4
Gruntfile.js

@@ -57,10 +57,7 @@ module.exports = function (grunt) {
                 }
             },
             options: {
-                plugin: ['tsify']//,
-                // browserifyOptions: {
-                //     standalone: 'MeasureSizeCalculator'
-                // }
+                plugin: ['tsify']
             }
         },
         // Uglify

+ 1 - 4
tsconfig.json

@@ -3,8 +3,5 @@
     "target": "ES5",
     "moduleResolution": "node"
   },
-  "exclude": [
-    "node_modules",
-    "test"
-  ]
+  "exclude": ["."]
 }