chore: compile vendor folder in non-strict mode (#8311)

This commit is contained in:
Alex Rudenko 2022-05-05 10:50:04 +02:00 committed by GitHub
parent baa017db92
commit ba6ee61b1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -6,6 +6,7 @@
"compilerOptions": { "compilerOptions": {
"composite": true, "composite": true,
"outDir": "../lib/cjs/vendor", "outDir": "../lib/cjs/vendor",
"module": "CommonJS" "module": "CommonJS",
"strict": false
} }
} }

View File

@ -6,6 +6,7 @@
"compilerOptions": { "compilerOptions": {
"composite": true, "composite": true,
"outDir": "../lib/esm/vendor", "outDir": "../lib/esm/vendor",
"module": "esnext" "module": "esnext",
"strict": false
} }
} }