Skip to content

Commit

Permalink
fix UMD global
Browse files Browse the repository at this point in the history
  • Loading branch information
Enya committed Jan 11, 2024
1 parent 098b41f commit 8464eff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/frontend/js/components/Pagination.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { useState } from 'react';
import React, { useState } from 'react'

// /**
// * Render pagination
Expand Down
3 changes: 1 addition & 2 deletions packages/frontend/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@
"strictNullChecks": true, // 啟用嚴格的空值檢查
"noImplicitAny": true, // 不允許隱式的any型別
"allowJs": true, // 允許編譯JavaScript文件(用於混合專案)
"outDir": "./dist",

"outDir": "./dist"
},
"include": ["js/**/*.ts", "js/**/*.tsx", "js/*.ts", "src/custom.d.ts"], // TypeScript編譯包括的文件
"exclude": ["node_modules"] // TypeScript編譯排除的文件夾
Expand Down

0 comments on commit 8464eff

Please sign in to comment.