Steven Silvester 8 éve
szülő
commit
1cb81c5983
1 módosított fájl, 9 hozzáadás és 5 törlés
  1. 9 5
      packages/main/tsconfig.json

+ 9 - 5
packages/main/tsconfig.json

@@ -4,16 +4,20 @@
     "noImplicitAny": true,
     "noEmitOnError": true,
     "noUnusedLocals": true,
-    "strictNullChecks": true,
     "module": "commonjs",
     "moduleResolution": "node",
     "target": "ES5",
     "outDir": "./build",
     "lib": ["ES5", "ES2015.Collection", "ES2015.Promise", "DOM"],
     "types": ["node"],
-    "baseUrl": "..",
+    "baseUrl": ".",
     "paths": {
-      "@jupyterlab/*": ["*"]
-    }
-  }
+      "@jupyterlab/*": ["../*/src"]
+    },
+    "rootDirs": [
+      ".."
+    ]
+  },
+  "include": ["src/*", "../packages/**/src/*"],
+  "exclude": ["node_modules/@jupyterlab/*"]
 }