fix the linting

This commit is contained in:
Nuckyz 2024-05-25 23:57:23 -03:00
parent 999d6c812f
commit 3331723496
No known key found for this signature in database
GPG key ID: 440BF8296E1C4AD9

View file

@ -21,14 +21,14 @@
"baseUrl": "./src/",
"paths": {
"@main/*": ["./main/*"],
"@api/*": ["./api/*"],
"@components/*": ["./components/*"],
"@utils/*": ["./utils/*"],
"@shared/*": ["./shared/*"],
"@webpack/types": ["./webpack/common/types"],
"@webpack/common": ["./webpack/common"],
"@webpack": ["./webpack/webpack"]
"@main/*": [ "./main/*" ],
"@api/*": [ "./api/*" ],
"@components/*": [ "./components/*" ],
"@utils/*": [ "./utils/*" ],
"@shared/*": [ "./shared/*" ],
"@webpack/types": [ "./webpack/common/types" ],
"@webpack/common": [ "./webpack/common" ],
"@webpack": [ "./webpack/webpack" ]
},
"plugins": [
@ -39,5 +39,5 @@
}
]
},
"include": ["src/**/*", "browser/**/*", "scripts/**/*"]
"include": [ "src/**/*", "browser/**/*", "scripts/**/*", "packages/**/*" ],
}