Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typescript 5 #136

Merged
merged 3 commits into from
Oct 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 0 additions & 19 deletions .babelrc.legacy

This file was deleted.

17 changes: 0 additions & 17 deletions .babelrc.new

This file was deleted.

5 changes: 3 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@ module.exports = {
],
root: true,
parserOptions: {
project: require('path').join(__dirname, 'tsconfig.json')
project: './tsconfig.test.json',
},
rules: {
'@typescript-eslint/consistent-type-imports': ['error', {prefer: 'type-imports'}],
'max-classes-per-file': 'off',
'no-duplicate-imports': 'off',
'prefer-rest-params': 'off',
'consistent-return': 'off',
}
};
6 changes: 6 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# These are supported funding model platforms

github:
- Alorel
custom:
- "https://paypal.me/alorel"
18 changes: 18 additions & 0 deletions .github/actions/init-node/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Set up npm
description: Set up npm and install dependencies
runs:
using: composite
steps:
- uses: actions/setup-node@v3
name: Set up node
with:
node-version-file: .nvmrc
cache: npm
registry-url: https://npm.pkg.github.com
always-auth: true

- name: Install dependencies
shell: bash
run: npm ci
env:
NODE_AUTH_TOKEN: ${{ github.token }}
24 changes: 24 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "github-actions" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "daily"
commit-message:
prefix: deps
prefix-development: "deps(dev)"
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
commit-message:
prefix: deps
prefix-development: "deps(dev)"
ignore:
- dependency-name: "*"
update-types:
- version-update:semver-minor
- version-update:semver-patch
Loading
Loading