mirror of
https://github.com/yangshun/tech-interview-handbook.git
synced 2025-07-12 16:13:43 +08:00
chore: configure turbo commands
This commit is contained in:
15
package.json
15
package.json
@ -9,13 +9,16 @@
|
||||
"apps/*"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "turbo run build",
|
||||
"clean": "turbo run clean",
|
||||
"dev": "turbo run dev --no-cache --parallel --continue",
|
||||
"build": "turbo build",
|
||||
"clean": "turbo clean",
|
||||
"dev": "turbo dev --filter=portal...",
|
||||
"dev:ui": "turbo dev --filter=storybook...",
|
||||
"dev:handbook": "turbo dev --filter=storybook...",
|
||||
"dev:all": "turbo dev --no-cache --parallel --continue",
|
||||
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
|
||||
"lint": "turbo run lint",
|
||||
"test": "turbo run test",
|
||||
"tsc": "turbo run tsc"
|
||||
"lint": "turbo lint",
|
||||
"test": "turbo test",
|
||||
"tsc": "turbo tsc"
|
||||
},
|
||||
"devDependencies": {
|
||||
"prettier": "^2.7.1",
|
||||
|
@ -6,6 +6,7 @@
|
||||
"jsx": "react-jsx",
|
||||
"lib": ["ES2015"],
|
||||
"module": "ESNext",
|
||||
"target": "es6"
|
||||
"target": "es6",
|
||||
"noEmit": true
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user