Browse Source

chore: Move common tsconfig setting to root

Michael Bromley 6 years ago
parent
commit
9a5824c811

+ 1 - 2
packages/admin-ui-plugin/tsconfig.json

@@ -5,7 +5,6 @@
     "removeComments": true,
     "noLib": false,
     "skipLibCheck": true,
-    "sourceMap": true,
-    "newLine": "LF"
+    "sourceMap": true
   }
 }

+ 1 - 2
packages/asset-server-plugin/tsconfig.json

@@ -5,7 +5,6 @@
     "removeComments": true,
     "noLib": false,
     "skipLibCheck": true,
-    "sourceMap": true,
-    "newLine": "LF"
+    "sourceMap": true
   }
 }

+ 1 - 2
packages/common/tsconfig.json

@@ -5,7 +5,6 @@
     "removeComments": true,
     "noLib": false,
     "skipLibCheck": true,
-    "sourceMap": true,
-    "newLine": "LF"
+    "sourceMap": true
   }
 }

+ 1 - 2
packages/core/tsconfig.json

@@ -4,7 +4,6 @@
     "declaration": true,
     "removeComments": true,
     "strictPropertyInitialization": false,
-    "sourceMap": true,
-    "newLine": "LF"
+    "sourceMap": true
   }
 }

+ 1 - 2
packages/create/tsconfig.json

@@ -5,7 +5,6 @@
     "removeComments": true,
     "noLib": false,
     "skipLibCheck": true,
-    "sourceMap": true,
-    "newLine": "LF"
+    "sourceMap": true
   }
 }

+ 1 - 2
packages/elasticsearch-plugin/tsconfig.json

@@ -5,7 +5,6 @@
     "removeComments": true,
     "noLib": false,
     "skipLibCheck": true,
-    "sourceMap": true,
-    "newLine": "LF"
+    "sourceMap": true
   }
 }

+ 1 - 2
packages/email-plugin/tsconfig.json

@@ -5,7 +5,6 @@
     "removeComments": true,
     "noLib": false,
     "skipLibCheck": true,
-    "sourceMap": true,
-    "newLine": "LF"
+    "sourceMap": true
   }
 }

+ 2 - 1
tsconfig.json

@@ -11,6 +11,7 @@
     "target": "es2017",
     "strict": true,
     "strictPropertyInitialization": false,
-    "sourceMap": false
+    "sourceMap": false,
+    "newLine": "LF"
   }
 }