Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanthat #57

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/Blazor/LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
---

date: 2023-07-13T05:44:46:00-05:00Z
description: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files, yadda, yadda, yadda...
keywords:
Expand All @@ -21,7 +22,7 @@ license: MIT
slug: mit-license
title: MIT License
type: license
---
-------------

# MIT License

Expand Down
12 changes: 6 additions & 6 deletions src/Blazor/src/package-lock.json

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

18 changes: 9 additions & 9 deletions src/Blazor/src/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"author": {
"name": "David G. Moore, Jr.",
"email": "[email protected]"
},
"dependencies": {
"@microsoft/dotnet-js-interop": "^8.0.0"
}
}
{
"author": {
"email": "[email protected]",
"name": "David G. Moore, Jr."
},
"dependencies": {
"@microsoft/dotnet-js-interop": "^8.0.0"
}
}
29 changes: 13 additions & 16 deletions src/Blazor/src/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
{
"compileOnSave": true,
"buildOptions": {
"emitEntryPoint": true,
"preserveCompilationContext": true,
"copyToOutput": {
"include": [
"appsettings.json",
"appsettings.Development.json"
]
}
},
"compilerOptions": {
"outDir": "../wwwroot/"
}
}
{
"buildOptions": {
"copyToOutput": {
"include": [ "appsettings.json", "appsettings.Development.json" ]
},
"emitEntryPoint": true,
"preserveCompilationContext": true
},
"compileOnSave": true,
"compilerOptions": {
"outDir": "../wwwroot/"
}
}
Loading