Skip to content

Commit

Permalink
fix: tsconfix fix
Browse files Browse the repository at this point in the history
  • Loading branch information
boris0301 committed Aug 8, 2024
1 parent a715300 commit b01a2cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/config/urls.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const devUrl = 'https://test.mermaidchart.com';
export const prodUrl = 'https://mermaidchart.com';
export const baseURL = (import.meta as any).env.PROD ? prodUrl : devUrl;
export const baseURL = import.meta.env.PROD ? prodUrl : devUrl;
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"target": "ES2019",
"types": ["gas-types-detailed"],
"types": ["gas-types-detailed", "vite/client"],
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
Expand Down

0 comments on commit b01a2cb

Please sign in to comment.