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.
18 lines
408 B
JSON
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
|
|
}
|
|
}
|
|
}
|