From 5cacab88940f1d8adecd6f4ffe75760068fd4a42 Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Tue, 16 Jan 2024 12:18:33 +0100 Subject: [PATCH] [ts] Skip lib check, some 3rd party dependencies do not compile with latest TS --- spine-ts/tsconfig.base.json | 33 +++++++++++++++------------------ 1 file changed, 15 insertions(+), 18 deletions(-) diff --git a/spine-ts/tsconfig.base.json b/spine-ts/tsconfig.base.json index 11320c84f..a6bec50ef 100644 --- a/spine-ts/tsconfig.base.json +++ b/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, - } -} \ No newline at end of file + "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 + } +}