nx/nx-dev/tutorial/project.json
Isaac Mann 1d9d91110d
feat(nx-dev): tutorialkit project (#29992)
Adds a tutorial project under nx-dev
The tutorials are run in browser and can be accessed here:

[/tutorials](https://nx-dev-git-nx-dev-tutorialkit-nrwl.vercel.app/tutorials)

The tutorials include:
- TypeScript Packages
- React Monorepo
- Angular Monorepo

In the future, we will link directly from the sidebar to the in-browser
tutorials.
2025-04-09 07:14:19 -04:00

18 lines
408 B
JSON

{
"name": "tutorial",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "nx-dev/tutorial/src",
"projectType": "library",
"tags": [],
"// targets": "to see all targets run: nx show project tutorial --web",
"targets": {
"build": {
"inputs": ["{projectRoot}/src/**/**"]
},
"lint": {
"command": "echo no linting",
"cache": true
}
}
}