mirror of
https://github.com/tsickert/discord-webhook.git
synced 2025-02-03 21:16:41 -05:00
Merge remote-tracking branch 'origin/tsickert/update-node-20' into tsickert/update-node-20
# Conflicts: # dist/index.js # dist/index.js.map # package-lock.json # package.json # src/action.ts
This commit is contained in:
commit
f72e1de0aa
3 changed files with 7 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
dist/
|
||||
lib/
|
||||
node_modules/
|
||||
jest.config.js
|
||||
jest.config.cjs
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
"eslint-comments/no-use": "off",
|
||||
"import/no-namespace": "off",
|
||||
"no-unused-vars": "off",
|
||||
"sort-imports": "off",
|
||||
"@typescript-eslint/no-unused-vars": "error",
|
||||
"@typescript-eslint/explicit-member-accessibility": ["error", {"accessibility": "no-public"}],
|
||||
"@typescript-eslint/no-require-imports": "error",
|
||||
|
@ -52,4 +53,4 @@
|
|||
"es6": true,
|
||||
"jest/globals": true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -5,5 +5,8 @@ module.exports = {
|
|||
transform: {
|
||||
'^.+\\.ts$': 'ts-jest'
|
||||
},
|
||||
transformIgnorePatterns: [
|
||||
'node_modules/(?!(axios)/)' // add this line
|
||||
],
|
||||
verbose: true
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue