Procházet zdrojové kódy

Add missing tsconfig.json in notebook package. (#3290)

Afshin Darian před 7 roky
rodič
revize
d2c117e326
1 změnil soubory, kde provedl 15 přidání a 0 odebrání
  1. 15 0
      packages/notebook/tsconfig.json

+ 15 - 0
packages/notebook/tsconfig.json

@@ -0,0 +1,15 @@
+{
+  "compilerOptions": {
+    "declaration": true,
+    "noImplicitAny": true,
+    "noEmitOnError": true,
+    "noUnusedLocals": true,
+    "module": "commonjs",
+    "moduleResolution": "node",
+    "target": "ES5",
+    "outDir": "./lib",
+    "lib": ["ES5", "ES2015.Promise", "DOM", "ES2015.Collection"],
+    "types": []
+  },
+  "include": ["src/*"]
+}