1
0
Fork 0
mirror of synced 2024-10-03 02:27:06 +13:00

Check types

This commit is contained in:
Adria Navarro 2023-08-01 13:26:04 +02:00
parent 5bea5bf974
commit 672666d96b
2 changed files with 4 additions and 6 deletions

View file

@ -16,7 +16,8 @@
"prebuild": "rimraf dist/",
"build": "tsc -p tsconfig.build.json && tsc -p tsconfig-cjs.build.json",
"build:dev": "yarn prebuild && tsc --build --watch --preserveWatchOutput",
"dev:builder": "yarn prebuild && concurrently \"tsc -p tsconfig.build.json --watch\" \"tsc -p tsconfig-cjs.build.json --watch\""
"dev:builder": "yarn prebuild && concurrently \"tsc -p tsconfig.build.json --watch\" \"tsc -p tsconfig-cjs.build.json --watch\"",
"check:types": "tsc -p tsconfig.json --noEmit --paths null"
},
"jest": {},
"devDependencies": {

View file

@ -3,8 +3,5 @@
"compilerOptions": {
"composite": true
},
"exclude": [
"node_modules",
"dist"
]
}
"exclude": ["node_modules", "dist"]
}