refactor(sw): fix type errors (#14478)

* style(sw): lint fixes

* refactor(sw): fix type errors

* chore(sw): disable `noImplicitAny`

* ci(sw): enable typecheck ci

* ci(sw): build `misskey-js` before typecheck
This commit is contained in:
zyoshoka 2024-08-30 15:53:04 +09:00 committed by GitHub
parent 3fe7e37f10
commit 8be624aa44
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 31 additions and 21 deletions

View file

@ -2,6 +2,7 @@
"compilerOptions": {
"allowJs": true,
"noEmitOnError": false,
"noImplicitAny": false,
"noImplicitReturns": true,
"noUnusedParameters": false,
"noUnusedLocals": true,