Quellcode durchsuchen

[ts] Skip lib check, some 3rd party dependencies do not compile with latest TS

Mario Zechner vor 1 Jahr
Ursprung
Commit
5cacab8894
1 geänderte Dateien mit 15 neuen und 18 gelöschten Zeilen
  1. 15 18
      spine-ts/tsconfig.base.json

+ 15 - 18
spine-ts/tsconfig.base.json

@@ -1,19 +1,16 @@
 {
-	"compilerOptions": {
-		"target": "ESNext",
-		"module": "ESNext",
-		"noImplicitAny": true,
-		"preserveConstEnums": true,
-		"inlineSourceMap": true,
-		"esModuleInterop": true,
-		"lib": [
-			"DOM",
-			"ES2015",
-			"ScriptHost"
-		],
-		"declaration": true,
-		"composite": true,
-		"moduleResolution": "node",
-		"strict": true,
-	}
-}
+  "compilerOptions": {
+    "target": "ESNext",
+    "module": "ESNext",
+    "noImplicitAny": true,
+    "preserveConstEnums": true,
+    "inlineSourceMap": true,
+    "esModuleInterop": true,
+    "lib": ["DOM", "ES2015", "ScriptHost"],
+    "declaration": true,
+    "composite": true,
+    "moduleResolution": "node",
+    "skipLibCheck": true,
+    "strict": true
+  }
+}