Skip to content

Commit

Permalink
🔧 Rename tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
luukdv committed Apr 4, 2020
1 parent edfb14d commit 5807440
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"format": "prettier --write '**/*.{js,json,ts,tsx}'",
"serve": "npm run build && gatsby serve",
"start": "gatsby develop",
"type-check:watch": "npm run type-check -- --watch",
"type-check": "tsc"
"typecheck:watch": "npm run typecheck -- --watch",
"typecheck": "tsc"
}
}
4 changes: 4 additions & 0 deletions docs/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
{
"compilerOptions": {
"baseUrl": ".",
"esModuleInterop": true,
"jsx": "react",
"moduleResolution": "Node",
"noEmit": true,
"paths": {
"react": ["node_modules/@types/react"]
},
"strict": true
},
"include": ["src"]
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
"prepublishOnly": "npm test && npm run build",
"test:watch": "jest --watch",
"test": "jest",
"type-check:watch": "npm run type-check -- --watch",
"type-check": "tsc --noEmit"
"typecheck:watch": "npm run typecheck -- --watch",
"typecheck": "tsc --noEmit"
},
"dependencies": {},
"devDependencies": {
Expand Down

0 comments on commit 5807440

Please sign in to comment.