Skip to content

Commit 87f78ba

Browse files
committed
fix: remove debug stuff
1 parent a6fedbc commit 87f78ba

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

examples/typescript/src/index.tsx

+5-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@ import './index.scss';
77
import App from './App';
88
import * as serviceWorker from './serviceWorker';
99

10-
createRoot(document.getElementById('root')!).render(<App />);
10+
createRoot(document.getElementById('root')!).render(
11+
<React.StrictMode>
12+
<App />
13+
</React.StrictMode>,
14+
);
1115

1216
// If you want your app to work offline and load faster, you can change
1317
// unregister() to register() below. Note this comes with some pitfalls.

tsconfig.json

-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
"declaration": true,
2929
"declarationDir": "./dist",
3030
"declarationMap": true,
31-
"sourceMap": true,
3231
"importHelpers": true
3332
},
3433
"include": ["./src/**/*"],

0 commit comments

Comments
 (0)