2024-09-29 00:37:01 +02:00
{
"$schema" : "./node_modules/@angular/cli/lib/config/schema.json" ,
"version" : 1 ,
"cli" : {
"packageManager" : "pnpm" ,
"analytics" : false ,
"cache" : {
"enabled" : false
}
} ,
"newProjectRoot" : "projects" ,
"projects" : {
2024-10-03 23:50:41 +02:00
"rxjs" : {
2024-09-29 00:37:01 +02:00
"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-09-29 00:37:01 +02:00
"options" : {
2024-10-03 23:50:41 +02:00
"outputPath" : "dist/rxjs" ,
2024-09-29 00:37:01 +02:00
"index" : "src/index.html" ,
"browser" : "src/main.ts" ,
"polyfills" : [ "zone.js" ] ,
"tsConfig" : "tsconfig.app.json" ,
"assets" : [ "src/favicon.ico" , "src/mockServiceWorker.js" ] ,
"styles" : [ ] ,
"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-09-29 00:37:01 +02:00
"configurations" : {
"production" : {
2024-10-03 23:50:41 +02:00
"buildTarget" : "rxjs:build:production"
2024-09-29 00:37:01 +02:00
} ,
"development" : {
2024-10-03 23:50:41 +02:00
"buildTarget" : "rxjs:build:development"
2024-09-29 00:37:01 +02:00
}
} ,
"defaultConfiguration" : "development"
} ,
"extract-i18n" : {
2024-11-25 18:21:06 +01:00
"builder" : "@angular/build:extract-i18n" ,
2024-09-29 00:37:01 +02:00
"options" : {
2024-10-03 23:50:41 +02:00
"buildTarget" : "rxjs:build"
2024-09-29 00:37:01 +02:00
}
}
}
}
2025-05-15 14:45:43 +02:00
} ,
"schematics" : {
"@schematics/angular:component" : {
"type" : "component"
} ,
"@schematics/angular:directive" : {
"type" : "directive"
} ,
"@schematics/angular:service" : {
"type" : "service"
} ,
"@schematics/angular:guard" : {
"typeSeparator" : "."
} ,
"@schematics/angular:interceptor" : {
"typeSeparator" : "."
} ,
"@schematics/angular:module" : {
"typeSeparator" : "."
} ,
"@schematics/angular:pipe" : {
"typeSeparator" : "."
} ,
"@schematics/angular:resolver" : {
"typeSeparator" : "."
}
2024-09-29 00:37:01 +02:00
}
}