Skip to content

Commit

Permalink
ts conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
MARZOOQUE committed Apr 17, 2024
1 parent 699e60c commit 928c2b1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"baseUrl": ".",
"noEmit": false,
"jsx": "react",
"baseUrl": ".",
"paths": {
"test-admin": ["src/resources/index.ts"]
}
Expand Down
2 changes: 1 addition & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default defineConfig({
entry: resolve('src', 'resources/index.ts'),
name: 'TestAdmin',
formats: ['es', 'umd'],
fileName: (format) => `test-admin.${format}.js`,
fileName: (format) => `test-admin.${format}.ts`,
},
rollupOptions: {
external: [...Object.keys(packageJson.peerDependencies)],
Expand Down

0 comments on commit 928c2b1

Please sign in to comment.