Skip to content

Instantly share code, notes, and snippets.

@cemtopkaya
Last active May 6, 2019 11:04
Show Gist options
  • Save cemtopkaya/e6baf65eb58275a51c6f97557170b30c to your computer and use it in GitHub Desktop.
Save cemtopkaya/e6baf65eb58275a51c6f97557170b30c to your computer and use it in GitHub Desktop.
Projeyi application veya library oluşturmadan başlatmışsak angular.json dosyasında projects:{} boş olarak görünüyor.
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {}
}
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"module": "es2015",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es5",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2018",
"dom"
]
}
}
{
"name": "angularjson-anlamak",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "~7.2.0",
"@angular/common": "~7.2.0",...
"core-js": "^2.5.4",
"rxjs": "~6.3.3",
"tslib": "^1.9.0",
"zone.js": "~0.8.26"
},
"devDependencies": {
"@angular/cli": "~7.3.8",...
"@types/node": "~8.9.4",...
"codelyzer": "~4.5.0",
"jasmine-core": "~2.99.1",...
"karma": "~4.0.0",...
"protractor": "~5.4.0",
"ts-node": "~7.0.0",
"tslint": "~5.11.0",
"typescript": "~3.2.2"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment