nest new apps/backend2 --skip-git
{
  "extends": ["tsconfig/nest.json"]
}{
    ...
    "devDependencies": {
        ...,
        "tsconfig": "workspace:*"
    }
}{
    "scripts": {
        ...,
        "dev": "nest start --watch"
    }
}{
    "projects": [
        ...,
        "backend2": {
            "type": "application",
            "root": "apps/backend2",
            "entryFile": "main",
            "sourceRoot": "apps/backend2/src",
            "compilerOptions": {
                "tsConfigPath": "apps/backend2/tsconfig.app.json"
            }
        }
    ]
}cd apps && ng new frontend2
Update tsconfig.json and extends with `tsconfig/angular.json` .