https://github.com/angular/angular
Raw File
Tip revision: c675d2b82024e4b03f7316539f26f4cfa070b2c3 authored by Ben Hong on 21 May 2024, 16:21:31 UTC
docs: make entire tutorial local to match offline intention for first-app tutorial
Tip revision: c675d2b
tsconfig-app.json
{
  "compilerOptions": {
    "target": "es2020",
    "module": "es2020",
    "moduleResolution": "node",
    "lib": ["es2020", "dom"],
    "experimentalDecorators": true,
    "emitDecoratorMetadata": true,
    "outDir": "dist",
    "types": ["node"],
    "rootDir": "."
  },
  "files": [
    "src/app.ts",
    "src/main.ts"
  ]
}
back to top