Skip to content

Commit

Permalink
fixes issues with typescript and node ts types microsoft/TypeScript#5…
Browse files Browse the repository at this point in the history
  • Loading branch information
kdcllc committed Aug 27, 2023
1 parent bf88f39 commit 93c1f7a
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
*.user
*.userosscache
*.sln.docstates
wwwroot/

# Build results
[Dd]ebug/
Expand Down
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,6 @@
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/node_modules": true
}
},
"dotnet.defaultSolution": "MessianicChords.sln"
}
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
# MessianicChords

This is the source code for MessianicChords.com, the best place to find lyrics and guitar chords for Messianic Jewish music

## Technologies

We use ASP.NET Core on the server, Lit web components on the client.

## Running locally

Open the .sln solution file in Visual Studio and hit F5 to run the server.

Then `cd ClientApp` and run `npm run dev` to run the client.
13 changes: 7 additions & 6 deletions src/ClientApp/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/ClientApp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"license": "ISC",
"dependencies": {
"@shoelace-style/shoelace": "^2.7.0",
"@types/node": "^20.5.6",
"@vaadin/router": "^1.7.4",
"lit": "^2.8.0",
"rxjs": "^7.5.5",
Expand Down
2 changes: 1 addition & 1 deletion src/ClientApp/src/script/pages/browse-songs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { customElement } from "lit/decorators.js";
import "../components/chord-card";
import "../components/chord-card-loading";
import "../components/load-more-button";
import { ChordSheet } from "../models/interfaces";
import { ChordSheet, PagedResult } from "../models/interfaces";
import { BootstrapBase } from "../common/bootstrap-base";
import { PagedList } from "../models/paged-list";
import { ChordService } from "../services/chord-service";
Expand Down

0 comments on commit 93c1f7a

Please sign in to comment.