diff options
| author | Hazelnoot <acomputerdog@gmail.com> | 2024-11-02 13:00:49 -0400 |
|---|---|---|
| committer | Hazelnoot <acomputerdog@gmail.com> | 2024-11-02 13:00:49 -0400 |
| commit | b97db55a94bde92189b5bb6877f7c189b6ab5d2f (patch) | |
| tree | 666b9e811d562de146fc82a4d4df1ea43d547021 | |
| parent | fix frontend-embed tsconfig includes (diff) | |
| download | sharkey-b97db55a94bde92189b5bb6877f7c189b6ab5d2f.tar.gz sharkey-b97db55a94bde92189b5bb6877f7c189b6ab5d2f.tar.bz2 sharkey-b97db55a94bde92189b5bb6877f7c189b6ab5d2f.zip | |
fix eslint in frontend / frontend-embed
| -rw-r--r-- | packages/frontend-embed/tsconfig.json | 3 | ||||
| -rw-r--r-- | packages/frontend/tsconfig.json | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/packages/frontend-embed/tsconfig.json b/packages/frontend-embed/tsconfig.json index 24dcbf66c9..1af34f378c 100644 --- a/packages/frontend-embed/tsconfig.json +++ b/packages/frontend-embed/tsconfig.json @@ -46,7 +46,8 @@ "compileOnSave": false, "include": [ "./src/**/*.ts", - "./src/**/*.vue" + "./src/**/*.vue", + "./@types/**/*.ts" ], "exclude": [ "node_modules", diff --git a/packages/frontend/tsconfig.json b/packages/frontend/tsconfig.json index c8847a8576..bbf9d653cf 100644 --- a/packages/frontend/tsconfig.json +++ b/packages/frontend/tsconfig.json @@ -49,7 +49,8 @@ "./src/**/*.ts", "./src/**/*.vue", "./test/**/*.ts", - "./test/**/*.vue" + "./test/**/*.vue", + "./@types/**/*.ts" ], "exclude": [ "node_modules", |