diff --git a/.github/workflows/ts.yml b/.github/workflows/ts.yml deleted file mode 100644 index 6372e4a..0000000 --- a/.github/workflows/ts.yml +++ /dev/null @@ -1,30 +0,0 @@ -# This workflow uses actions that are not certified by GitHub. -# They are provided by a third-party and are governed by -# separate terms of service, privacy policy, and support -# documentation. - -name: TypeScript - -on: - push: - branches: [ "main" ] - pull_request: - branches: [ "main" ] - -jobs: - ts: - name: Run ts type-checking - runs-on: ubuntu-latest - permissions: - contents: read - security-events: write - actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status - steps: - - name: Checkout code - uses: actions/checkout@v3 - - - name: Install TypeScript - run: | - npm i -g typescript@5.3.3 - - name: Run TypeScript - run: tsc --project jsconfig.json diff --git a/.gitignore b/.gitignore index 3c3629e..2c085d1 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ node_modules +target diff --git a/jsconfig.json b/jsconfig.json deleted file mode 100644 index beaeaf4..0000000 --- a/jsconfig.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "compilerOptions": { - "target": "ES2022", - "module": "None", - "checkJs": true, - "strict": true, - "noUncheckedIndexedAccess": true - }, - "exclude": [ - "node_modules" - ] -} \ No newline at end of file