chequear typescript

This commit is contained in:
Cat /dev/Nulo 2023-02-02 19:04:01 -03:00
parent 53c1fa831d
commit 6e3ab48720
2 changed files with 11 additions and 1 deletions

View file

@ -5,7 +5,8 @@
"description": "",
"main": "index.js",
"scripts": {
"run": "esbuild --log-level=warning --target=node18 --sourcemap --outdir=build-javascript --outbase=. *.ts **/*.ts && node --enable-source-maps build-javascript/index.js"
"run": "esbuild --log-level=warning --target=node18 --sourcemap --outdir=build-javascript --outbase=. *.ts **/*.ts && node --enable-source-maps build-javascript/index.js",
"tsc:check": "tsc --noEmit"
},
"keywords": [],
"author": "",

9
tsconfig.json Normal file
View file

@ -0,0 +1,9 @@
{
"compilerOptions": {
"target": "es2022",
"module": "es2022",
"moduleResolution": "node",
"esModuleInterop": true,
"strict": true
}
}