Browse Source

Added in negative file globs for AtomicNET.d.ts since Atom automatically adds them in if they are in the directory

Shaddock Heath 9 years ago
parent
commit
132ffe9a30
2 changed files with 4 additions and 2 deletions
  1. 2 1
      Script/AtomicWebViewEditor/tsconfig.json
  2. 2 1
      Script/tsconfig.json

+ 2 - 1
Script/AtomicWebViewEditor/tsconfig.json

@@ -12,7 +12,8 @@
     "filesGlob": [
     "filesGlob": [
         "./**/*.ts",
         "./**/*.ts",
         "../TypeScript/*.ts",
         "../TypeScript/*.ts",
-        "!../TypeScript/dist/*.ts"
+        "!../TypeScript/dist/*.ts",
+        "!../TypeScript/AtomicNET.d.ts"
     ],
     ],
     "atom": {
     "atom": {
         "rewriteTsconfig": true
         "rewriteTsconfig": true

+ 2 - 1
Script/tsconfig.json

@@ -15,7 +15,8 @@
         "./ToolCore/**/*.ts",
         "./ToolCore/**/*.ts",
         "./AtomicEditor/**/*.ts",
         "./AtomicEditor/**/*.ts",
         "./TypeScript/**/*.ts",
         "./TypeScript/**/*.ts",
-        "!./TypeScript/dist/*.ts"
+        "!./TypeScript/dist/*.ts",
+        "!./TypeScript/AtomicNET.d.ts"
     ],
     ],
     "atom": {
     "atom": {
         "rewriteTsconfig": true
         "rewriteTsconfig": true