2024-02-11 23:16:40 +01:00
{
"$schema" : "./node_modules/@angular/cli/lib/config/schema.json" ,
"version" : 1 ,
"cli" : {
2024-02-12 21:33:58 +01:00
"packageManager" : "pnpm" ,
2024-02-25 02:34:43 +01:00
"analytics" : false ,
"cache" : {
"enabled" : false
}
2024-02-11 23:16:40 +01:00
} ,
"newProjectRoot" : "projects" ,
"projects" : {
"simple" : {
"projectType" : "application" ,
"schematics" : {
"@schematics/angular:component" : {
"inlineTemplate" : true ,
"inlineStyle" : true ,
"skipTests" : true
} ,
"@schematics/angular:class" : {
"skipTests" : true
} ,
"@schematics/angular:directive" : {
"skipTests" : true
} ,
"@schematics/angular:guard" : {
"skipTests" : true
} ,
"@schematics/angular:interceptor" : {
"skipTests" : true
} ,
"@schematics/angular:pipe" : {
"skipTests" : true
} ,
"@schematics/angular:resolver" : {
"skipTests" : true
} ,
"@schematics/angular:service" : {
"skipTests" : true
}
} ,
"root" : "" ,
"sourceRoot" : "src" ,
"prefix" : "app" ,
"architect" : {
"build" : {
2024-11-25 18:21:06 +01:00
"builder" : "@angular/build:application" ,
2024-02-11 23:16:40 +01:00
"options" : {
"outputPath" : "dist/simple" ,
"index" : "src/index.html" ,
"browser" : "src/main.ts" ,
"polyfills" : [ "zone.js" ] ,
"tsConfig" : "tsconfig.app.json" ,
"assets" : [ "src/favicon.ico" , "src/assets" ] ,
"styles" : [ "src/styles.css" ] ,
"scripts" : [ ]
} ,
"configurations" : {
"production" : {
"budgets" : [
{
"type" : "initial" ,
"maximumWarning" : "500kb" ,
"maximumError" : "1mb"
} ,
{
"type" : "anyComponentStyle" ,
"maximumWarning" : "2kb" ,
"maximumError" : "4kb"
}
] ,
"outputHashing" : "all"
} ,
"development" : {
"optimization" : false ,
"extractLicenses" : false ,
"sourceMap" : true
}
} ,
"defaultConfiguration" : "production"
} ,
"serve" : {
2024-11-25 18:21:06 +01:00
"builder" : "@angular/build:dev-server" ,
2024-02-11 23:16:40 +01:00
"configurations" : {
"production" : {
"buildTarget" : "simple:build:production"
} ,
"development" : {
"buildTarget" : "simple:build:development"
}
} ,
"defaultConfiguration" : "development"
} ,
"extract-i18n" : {
2024-11-25 18:21:06 +01:00
"builder" : "@angular/build:extract-i18n" ,
2024-02-11 23:16:40 +01:00
"options" : {
"buildTarget" : "simple:build"
}
}
}
}
}
}