build: allow noUnusedLocals
This commit is contained in:
parent
1b4ecc360a
commit
4becd4bc00
6
.github/workflows/nodejs.yml
vendored
6
.github/workflows/nodejs.yml
vendored
@ -62,10 +62,8 @@ jobs:
|
|||||||
path: node_modules
|
path: node_modules
|
||||||
key: node_modules-${{ hashFiles('**/package-temp-dir/yarn.lock') }}
|
key: node_modules-${{ hashFiles('**/package-temp-dir/yarn.lock') }}
|
||||||
|
|
||||||
- name: Run Unit Test
|
- name: Test FlinkSQL
|
||||||
run: |
|
run: npx jest test/parser/flinksql
|
||||||
export NODE_OPTIONS="--max_old_space_size=4096"
|
|
||||||
yarn test
|
|
||||||
|
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
"module": "ESNext",
|
"module": "ESNext",
|
||||||
"moduleResolution": "node",
|
"moduleResolution": "node",
|
||||||
"declaration": true,
|
"declaration": true,
|
||||||
"noUnusedLocals": true,
|
"noUnusedLocals": false,
|
||||||
"noUnusedParameters": false,
|
"noUnusedParameters": false,
|
||||||
"allowSyntheticDefaultImports": true,
|
"allowSyntheticDefaultImports": true,
|
||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
|
Loading…
Reference in New Issue
Block a user