mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-14 09:37:18 +08:00
This change removes the need for the `@schematics/schematics` package and moves it inside `@angular-devkit/schematics-cli`.
77 lines
2.6 KiB
JSON
77 lines
2.6 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"noEmitOnError": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedParameters": false,
|
|
"noUnusedLocals": false,
|
|
"outDir": "./dist",
|
|
"rootDir": ".",
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"target": "es2019",
|
|
"lib": [
|
|
"es2019"
|
|
],
|
|
"baseUrl": "",
|
|
"rootDirs": [
|
|
".",
|
|
"./dist-schema/",
|
|
"./bazel-bin/"
|
|
],
|
|
"typeRoots": [
|
|
"./node_modules/@types"
|
|
],
|
|
"types": [
|
|
"node"
|
|
],
|
|
"paths": {
|
|
"@angular-devkit/core": [ "./packages/angular_devkit/core/src/index" ],
|
|
"@angular-devkit/core/node": [ "./packages/angular_devkit/core/node/index" ],
|
|
"@angular-devkit/core/node/testing": [ "./packages/angular_devkit/core/node/testing/index" ],
|
|
"@angular-devkit/schematics": [ "./packages/angular_devkit/schematics/src/index" ],
|
|
"@angular-devkit/schematics/tasks": [ "./packages/angular_devkit/schematics/tasks/index" ],
|
|
"@angular-devkit/schematics/tasks/node": [ "./packages/angular_devkit/schematics/tasks/node/index" ],
|
|
"@angular-devkit/schematics/tools": [ "./packages/angular_devkit/schematics/tools/index" ],
|
|
"@angular-devkit/schematics/testing": [ "./packages/angular_devkit/schematics/testing/index" ],
|
|
"@angular-devkit/build-optimizer": [ "./packages/angular_devkit/build_optimizer/src/index" ],
|
|
"@angular-devkit/architect": [ "./packages/angular_devkit/architect/src/index" ],
|
|
"@angular-devkit/architect/testing": [ "./packages/angular_devkit/architect/testing/index" ],
|
|
"@angular-devkit/build-angular": [ "./packages/angular_devkit/build_angular/src/index" ],
|
|
"@angular-devkit/build-webpack": [ "./packages/angular_devkit/build_webpack/src/index" ],
|
|
"@ngtools/webpack": [ "./packages/ngtools/webpack/src/index" ],
|
|
"@schematics/angular": [ "./packages/schematics/angular/index" ]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "@bazel/tsetse",
|
|
"disabledRules": [
|
|
"must-type-assert-json-parse"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"bazelOptions": {
|
|
"suppressTsconfigOverrideWarnings": true
|
|
},
|
|
"exclude": [
|
|
"packages/angular_devkit/build_angular/src/bazel-babel.d.ts",
|
|
"bazel-out/**/*",
|
|
"dist/**/*",
|
|
"dist-schema/**",
|
|
"etc/api/**/*",
|
|
"etc/cli.angular.io/**/*",
|
|
"**/node_modules/**/*",
|
|
"**/third_party/**/*",
|
|
"packages/angular_devkit/schematics_cli/*/files/**/*",
|
|
"packages/angular_devkit/*/test/**/*",
|
|
"packages/schematics/*/*/*files/**/*",
|
|
"tests/**/*",
|
|
"tools/**/*",
|
|
"integration/**/*",
|
|
".ng-dev/**/*"
|
|
]
|
|
}
|