### Bug Report or Feature Request (mark with an `x`) ``` - [X] bug report - [ ] feature request ``` ### Scope @schematics/schematics ### Versions @angular-devkit/schematics-cli v0.7.3 ### Repro steps 1. Install the schematics CLI globally. ``` bash npm install -g @angular-devkit/schematics-cli ``` 2. Generate new schematics project with the `blank` schematic from `@schematics/schematics`. ``` bash schematics blank --name=test ``` 3. Navigate to the newly created project. ``` bash cd test ``` 4. Try to build the project. ``` bash npm run build ``` ### The log given by the failure The build fails with the following TypeScript error: ``` bash src/test/index.ts:6:25 - error TS6133: 'options' is declared but its value is never read. 6 export function test(options: any): Rule { ``` ### Desired functionality The newly created project should build successfully.