Sets up the fundamental structure for the AURORA LUXE TRAVEL Angular application. Includes project configuration, dependencies for Angular and Tailwind CSS, and basic HTML and TypeScript entry points. Defines static destination, experience, and testimonial data for initial use.
52 lines
No EOL
1.3 KiB
JSON
52 lines
No EOL
1.3 KiB
JSON
{
|
|
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
|
"version": 1,
|
|
"newProjectRoot": "",
|
|
"projects": {
|
|
"app": {
|
|
"projectType": "application",
|
|
"root": "",
|
|
"sourceRoot": "./",
|
|
"prefix": "app",
|
|
"architect": {
|
|
"build": {
|
|
"builder": "@angular/build:application",
|
|
"options": {
|
|
"outputPath": {
|
|
"base": "./dist",
|
|
"browser": "."
|
|
},
|
|
"browser": "index.tsx",
|
|
"tsConfig": "tsconfig.json"
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"outputHashing": "all"
|
|
},
|
|
"development": {
|
|
"optimization": false,
|
|
"extractLicenses": false,
|
|
"sourceMap": true
|
|
}
|
|
},
|
|
"defaultConfiguration": "production"
|
|
},
|
|
"serve": {
|
|
"builder": "@angular/build:dev-server",
|
|
"options": {
|
|
"port": 3000
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"buildTarget": "app:build:production"
|
|
},
|
|
"development": {
|
|
"buildTarget": "app:build:development"
|
|
}
|
|
},
|
|
"defaultConfiguration": "development"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |