Skip to content

Commit

Permalink
chore: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
hi-ogawa committed Nov 11, 2024
1 parent 01dba7d commit 75bca17
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 25 deletions.
2 changes: 1 addition & 1 deletion playground/rolldown-dev-react/src/main.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import ReactDOMClient from 'react-dom/client'
import { App } from './app.tsx'
import { App } from './app'

ReactDOMClient.createRoot(document.getElementById('root')!).render(
<React.StrictMode>
Expand Down
15 changes: 3 additions & 12 deletions playground/rolldown-dev-react/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,7 @@
{
"include": ["src", "*.ts"],
"extends": "../tsconfig.json",
"include": ["src", ".ts"],
"compilerOptions": {
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"verbatimModuleSyntax": true,
"allowImportingTsExtensions": true,
"moduleResolution": "Bundler",
"module": "ESNext",
"target": "ESNext",
"lib": ["ESNext", "DOM"],
"jsx": "react-jsx",
"noEmit": true
"jsx": "react-jsx"
}
}
15 changes: 3 additions & 12 deletions playground/rolldown-dev-ssr/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,7 @@
{
"include": ["src", "*.ts"],
"extends": "../tsconfig.json",
"include": ["src", ".ts"],
"compilerOptions": {
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"verbatimModuleSyntax": true,
"allowImportingTsExtensions": true,
"moduleResolution": "Bundler",
"module": "ESNext",
"target": "ESNext",
"lib": ["ESNext", "DOM"],
"jsx": "react-jsx",
"noEmit": true
"jsx": "react-jsx"
}
}

0 comments on commit 75bca17

Please sign in to comment.