chore: configure turbo commands

pull/302/head
Yangshun Tay 2 years ago
parent a5acf92139
commit 0475efce3c

@ -9,13 +9,16 @@
"apps/*" "apps/*"
], ],
"scripts": { "scripts": {
"build": "turbo run build", "build": "turbo build",
"clean": "turbo run clean", "clean": "turbo clean",
"dev": "turbo run dev --no-cache --parallel --continue", "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}\"", "format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint", "lint": "turbo lint",
"test": "turbo run test", "test": "turbo test",
"tsc": "turbo run tsc" "tsc": "turbo tsc"
}, },
"devDependencies": { "devDependencies": {
"prettier": "^2.7.1", "prettier": "^2.7.1",

@ -6,6 +6,7 @@
"jsx": "react-jsx", "jsx": "react-jsx",
"lib": ["ES2015"], "lib": ["ES2015"],
"module": "ESNext", "module": "ESNext",
"target": "es6" "target": "es6",
"noEmit": true
} }
} }

Loading…
Cancel
Save