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/", "baseUrl": "./src/",
"paths": { "paths": {
"@main/*": ["./main/*"], "@main/*": [ "./main/*" ],
"@api/*": ["./api/*"], "@api/*": [ "./api/*" ],
"@components/*": ["./components/*"], "@components/*": [ "./components/*" ],
"@utils/*": ["./utils/*"], "@utils/*": [ "./utils/*" ],
"@shared/*": ["./shared/*"], "@shared/*": [ "./shared/*" ],
"@webpack/types": ["./webpack/common/types"], "@webpack/types": [ "./webpack/common/types" ],
"@webpack/common": ["./webpack/common"], "@webpack/common": [ "./webpack/common" ],
"@webpack": ["./webpack/webpack"] "@webpack": [ "./webpack/webpack" ]
}, },
"plugins": [ "plugins": [
@ -39,5 +39,5 @@
} }
] ]
}, },
"include": ["src/**/*", "browser/**/*", "scripts/**/*"] "include": [ "src/**/*", "browser/**/*", "scripts/**/*", "packages/**/*" ],
} }