Skip to content

Commit

Permalink
Disable TSC incremental
Browse files Browse the repository at this point in the history
  • Loading branch information
ardatan committed Jul 12, 2021
1 parent d718efa commit fed00e3
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -7,8 +7,8 @@
"postinstall": "patch-package && husky install",
"predeploy:website": "yarn build:api-docs",
"deploy:website": "cd website && yarn deploy",
"ts:check": "tsc --noEmit --incremental",
"ts:transpile": "concurrently \"tsc --project tsconfig.build.json --incremental\" \"tsc --project tsconfig.build.es5.json --incremental\"",
"ts:check": "tsc --noEmit",
"ts:transpile": "concurrently \"tsc --project tsconfig.build.json\" \"tsc --project tsconfig.build.es5.json\"",
"clean-dist": "rimraf \"packages/**/dist\" && rimraf \"packages/**/dist-es5\" && rimraf \".bob\"",
"build": "yarn ts:transpile && bob build",
"build:api-docs": "node scripts/build-api-docs.js",
Expand Down
1 change: 0 additions & 1 deletion tsconfig.build.es5.json
Expand Up @@ -3,7 +3,6 @@
"compilerOptions": {
"outDir": "dist-es5",
"target": "es5",
"tsBuildInfoFile": "./node_modules/tsconfig.build.es5.tsbuildinfo",
"sourceMap": false,
"inlineSourceMap": false
}
Expand Down
1 change: 0 additions & 1 deletion tsconfig.build.json
@@ -1,7 +1,6 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/tsconfig.build.tsbuildinfo",
"sourceMap": false,
"inlineSourceMap": false
},
Expand Down

0 comments on commit fed00e3

Please sign in to comment.