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/", "prebuild": "rimraf dist/",
"build": "tsc -p tsconfig.build.json && tsc -p tsconfig-cjs.build.json", "build": "tsc -p tsconfig.build.json && tsc -p tsconfig-cjs.build.json",
"build:dev": "yarn prebuild && tsc --build --watch --preserveWatchOutput", "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": {}, "jest": {},
"devDependencies": { "devDependencies": {

View File

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