mirror of
https://github.com/BluemediaDev/muse.git
synced 2025-06-27 09:12:43 +02:00
Fix ERR_MODULE_NOT_FOUND for constants file (#1023)
Co-authored-by: Max Isom <hi@maxisom.me>
This commit is contained in:
parent
75d2714ff2
commit
e0dfd8c9fd
27 changed files with 600 additions and 37 deletions
|
@ -48,6 +48,7 @@
|
|||
"eslint": "^7.32.0",
|
||||
"eslint-config-xo": "^0.39.0",
|
||||
"eslint-config-xo-typescript": "^0.44.0",
|
||||
"eslint-plugin-import": "2.29.1",
|
||||
"husky": "^4.3.8",
|
||||
"prisma": "4.16.0",
|
||||
"release-it": "^14.11.8",
|
||||
|
@ -63,12 +64,17 @@
|
|||
"parserOptions": {
|
||||
"project": "./tsconfig.json"
|
||||
},
|
||||
"plugins": ["import"],
|
||||
"rules": {
|
||||
"new-cap": "off",
|
||||
"@typescript-eslint/no-unused-vars": "off",
|
||||
"@typescript-eslint/no-unused-vars-experimental": "error",
|
||||
"@typescript-eslint/prefer-readonly-parameter-types": "off",
|
||||
"@typescript-eslint/no-implicit-any-catch": "off"
|
||||
"@typescript-eslint/no-implicit-any-catch": "off",
|
||||
"import/extensions": [
|
||||
"error",
|
||||
"ignorePackages"
|
||||
]
|
||||
}
|
||||
},
|
||||
"husky": {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue