diff options
| author | stonedDiscord <Tukz@gmx.de> | 2022-03-24 09:26:20 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-24 09:26:20 +0100 |
| commit | e4d1e1cd4b361e96aad09d9b5539db44cb1ed8dd (patch) | |
| tree | bedbe4f6b94dc593a6eef508a7dce20432a2406d | |
| parent | ffa23343e0a0badd9e50a005359fdb79efead995 (diff) | |
| parent | cb5117e66c7789db728e80a0b47c2011a46bd6e0 (diff) | |
Merge pull request #129 from AttorneyOnline/full-strict
Full Strict Typescript
| -rw-r--r-- | tsconfig.json | 2 | ||||
| -rw-r--r-- | webAO/utils/aoml.ts | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/tsconfig.json b/tsconfig.json index 7803fbe..85f6983 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,7 +3,7 @@ "outDir": "./dist", "allowJs": true, "target": "es5", - //"strict": true, + "strict": true, "strictNullChecks": false, //document.getElementBy "downlevelIteration": true }, diff --git a/webAO/utils/aoml.ts b/webAO/utils/aoml.ts index 154274d..fbdee21 100644 --- a/webAO/utils/aoml.ts +++ b/webAO/utils/aoml.ts @@ -1,6 +1,7 @@ import request from "../services/request" interface Aoml { + [key: string]: string | number, name: string; start: string; end: string; |
