Skip to content

Commit

Permalink
Merge pull request #399 from lblod/feature/strict-type-checking
Browse files Browse the repository at this point in the history
build(typescript): enable strict type-checking
  • Loading branch information
abeforgit authored Oct 6, 2022
2 parents 151607a + 52de640 commit 4578d33
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion addon/core/controllers/rdfa-document.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
} from '@lblod/ember-rdfa-editor/utils/event-bus';
import xmlFormat from 'xml-formatter';
import { ViewController } from '@lblod/ember-rdfa-editor/core/controllers/view-controller';
import ModelRange from "@lblod/ember-rdfa-editor/core/model/model-range";
import ModelRange from '@lblod/ember-rdfa-editor/core/model/model-range';

/**
* Legacy interface for external consumers. They expect to receive this interface
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
@title={{this.title}}
@alignment='left'
typeof='reglementaireBijlage'
role="menu"
>
{{#each this.articles as |article|}}
<AuLinkExternal role='menuitem'>{{article}}</AuLinkExternal>
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"noUnusedLocals": false,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noEmitOnError": false,
"noEmitOnError": true,
"noEmit": true,
"inlineSourceMap": true,
"inlineSources": true,
Expand Down

0 comments on commit 4578d33

Please sign in to comment.