Browse Source

buildutils and test tsconfig inherit from base config again

Jason Grout 6 years ago
parent
commit
35b15d7e1a
2 changed files with 2 additions and 29 deletions
  1. 1 15
      buildutils/tsconfig.json
  2. 1 14
      testutils/tsconfig.json

+ 1 - 15
buildutils/tsconfig.json

@@ -1,23 +1,9 @@
 {
+  "extends": "../tsconfigbase",
   "compilerOptions": {
     "outDir": "lib",
     "rootDir": "src",
-    "allowSyntheticDefaultImports": true,
-    "composite": true,
-    "declaration": true,
-    "esModuleInterop": true,
-    "incremental": true,
-    "jsx": "react",
-    "lib": ["dom", "es2015"],
     "module": "commonjs",
-    "moduleResolution": "node",
-    "noEmitOnError": true,
-    "noImplicitAny": true,
-    "noUnusedLocals": true,
-    "preserveWatchOutput": true,
-    "resolveJsonModule": true,
-    "target": "es2015",
-    "types": []
   },
   "include": ["src/*"]
 }

+ 1 - 14
testutils/tsconfig.json

@@ -1,22 +1,9 @@
 {
+  "extends": "../tsconfigbase",
   "compilerOptions": {
     "outDir": "lib",
     "rootDir": "src",
-    "allowSyntheticDefaultImports": true,
-    "composite": true,
-    "declaration": true,
-    "esModuleInterop": true,
-    "incremental": true,
-    "jsx": "react",
-    "lib": ["dom", "es2015"],
     "module": "commonjs",
-    "moduleResolution": "node",
-    "noEmitOnError": true,
-    "noImplicitAny": true,
-    "noUnusedLocals": true,
-    "preserveWatchOutput": true,
-    "resolveJsonModule": true,
-    "target": "es2015",
     "types": ["node"]
   },
   "include": ["src/*"],