@kcws/heft-web-rig
Version:
a rig package for web development
47 lines (45 loc) • 1.18 kB
JSON
/**
* Defines configuration used by core Heft.
*/
{
// "$schema": "https://developer.microsoft.com/json-schemas/heft/heft.schema.json",
"$schema": "https://raw.githubusercontent.com/microsoft/rushstack/main/apps/heft/src/schemas/heft.schema.json",
"phasesByName": {
"build": {
"cleanFiles": [
{
"includeGlobs": ["lib", "lib-umd", "lib-es2015", "lib-commonjs", "dist"]
}
],
"tasksByName": {
"typescript": {
"taskPlugin": {
"pluginPackage": "@rushstack/heft-typescript-plugin"
}
},
"eslint": {
"taskDependencies": ["typescript"],
"taskPlugin": {
"pluginPackage": "@rushstack/heft-lint-plugin"
}
},
"api-extractor": {
"taskDependencies": ["typescript"],
"taskPlugin": {
"pluginPackage": "@rushstack/heft-api-extractor-plugin"
}
}
}
},
"test": {
"phaseDependencies": ["build"],
"tasksByName": {
"jest": {
"taskPlugin": {
"pluginPackage": "@rushstack/heft-jest-plugin"
}
}
}
}
}
}