浏览代码

Move manual tsc to prevent issues

sebavan 6 年之前
父节点
当前提交
fd23037057

+ 1 - 2
gui/tsconfig.json

@@ -7,7 +7,6 @@
             "babylonjs": [
                 "../../dist/preview release/babylon.module.d.ts"
             ]
-        },
-        "outDir": "./build"
+        }
     }
 }

+ 1 - 2
inspector/tsconfig.json

@@ -20,7 +20,6 @@
             "babylonjs-serializers": [
                 "../../dist/preview release/serializers/babylonjs.serializers.module.d.ts"
             ]
-        },
-        "outDir": "./build"
+        }
     }
 }

+ 1 - 2
loaders/tsconfig.json

@@ -10,7 +10,6 @@
           "babylonjs-gltf2interface": [
             "../../dist/preview release/glTF2Interface/babylon.glTF2Interface.d.ts"
           ],
-      },
-      "outDir": "./build"
+      }
   }
 }

+ 1 - 2
materialsLibrary/tsconfig.json

@@ -7,7 +7,6 @@
             "babylonjs": [
                 "../../dist/preview release/babylon.module.d.ts"
             ]
-        },
-        "outDir": "./build"
+        }
     }
 }

+ 1 - 2
postProcessLibrary/tsconfig.json

@@ -7,7 +7,6 @@
             "babylonjs": [
                 "../../dist/preview release/babylon.module.d.ts"
             ]
-        },
-        "outDir": "./build"
+        }
     }
 }

+ 1 - 2
proceduralTexturesLibrary/tsconfig.json

@@ -7,7 +7,6 @@
             "babylonjs": [
                 "../../dist/preview release/babylon.module.d.ts"
             ]
-        },
-        "outDir": "./build"
+        }
     }
 }

+ 1 - 9
serializers/tsconfig.json

@@ -1,13 +1,6 @@
 {
   "extends": "../tsconfigRules",
   "compilerOptions": {
-      "lib": [
-          "es5",
-          "dom",
-          "es2015.promise",
-          "es2015.collection",
-          "es2015.iterable"
-      ],
       "baseUrl": "./src/",
       "rootDir": "./src/",
       "paths": {
@@ -17,7 +10,6 @@
           "babylonjs-gltf2interface": [
             "../../dist/preview release/glTF2Interface/babylon.glTF2Interface.d.ts"
           ],
-      },
-      "outDir": "./build"
+      }
   }
 }

+ 1 - 2
src/tsconfig.json

@@ -3,7 +3,6 @@
   "compilerOptions": {
       "types" : [],
       "baseUrl": "./",
-      "rootDir": "./",
-      "outDir": "./build"
+      "rootDir": "./"
   }
 }

+ 2 - 1
tsconfigRules.json

@@ -20,6 +20,7 @@
             "es2015.promise",
             "es2015.collection",
             "es2015.iterable"
-        ]
+        ],
+        "outDir": ".temp/manualBuild"
     }
 }