Update tsconfig.json

- use esnext instead of es2022
- use incremental builds
This commit is contained in:
tezlm 2022-12-07 06:35:41 -08:00
parent 00001582d0
commit 00001593ab
Signed by: tezlm
GPG key ID: 649733FCD94AFBBA

View file

@ -3,6 +3,7 @@
"include": ["src/**/*"],
"exclude": ["node_modules/*"],
"compilerOptions": {
"target": "es2022",
"target": "esnext",
"incremental": true,
}
}