Skip to content

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
icidasset committed Feb 19, 2024
1 parent ff2de87 commit 2930a48
Showing 1 changed file with 50 additions and 16 deletions.
66 changes: 50 additions & 16 deletions packages/nest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,19 +62,42 @@
},
"typesVersions": {
"*": {
".": ["dist/src/index"],
"app-info": ["dist/src/app-info"],
"class": ["dist/src/class"],
"crypto": ["dist/src/crypto"],
"errors": ["dist/src/errors"],
"events": ["dist/src/events"],
"path": ["dist/src/path"],
"transaction": ["dist/src/transaction"],
"types": ["dist/src/types"],
"version": ["dist/src/version"]
".": [
"dist/src/index"
],
"app-info": [
"dist/src/app-info"
],
"class": [
"dist/src/class"
],
"crypto": [
"dist/src/crypto"
],
"errors": [
"dist/src/errors"
],
"events": [
"dist/src/events"
],
"path": [
"dist/src/path"
],
"transaction": [
"dist/src/transaction"
],
"types": [
"dist/src/types"
],
"version": [
"dist/src/version"
]
}
},
"files": ["dist", "src"],
"files": [
"dist",
"src"
],
"scripts": {
"lint": "tsc --build && eslint . --quiet --ignore-pattern='README.md' && prettier --check '**/*.{js,ts,yml,json}' --ignore-path ../../.gitignore",
"build": "tsc --build",
Expand Down Expand Up @@ -112,11 +135,15 @@
"provenance": true
},
"eslintConfig": {
"extends": ["@fission-codes"],
"extends": [
"@fission-codes"
],
"env": {
"mocha": true
},
"ignorePatterns": ["dist"],
"ignorePatterns": [
"dist"
],
"rules": {
"@typescript-eslint/no-unused-vars": [
"error",
Expand All @@ -126,11 +153,18 @@
"varsIgnorePattern": "^_"
}
],
"unicorn/no-array-reduce": ["off"]
"unicorn/no-array-reduce": [
"off"
]
}
},
"depcheck": {
"specials": ["bin"],
"ignores": ["@types/*", "assert"]
"specials": [
"bin"
],
"ignores": [
"@types/*",
"assert"
]
}
}

0 comments on commit 2930a48

Please sign in to comment.