We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6fedbc commit 87f78baCopy full SHA for 87f78ba
examples/typescript/src/index.tsx
@@ -7,7 +7,11 @@ import './index.scss';
7
import App from './App';
8
import * as serviceWorker from './serviceWorker';
9
10
-createRoot(document.getElementById('root')!).render(<App />);
+createRoot(document.getElementById('root')!).render(
11
+ <React.StrictMode>
12
+ <App />
13
+ </React.StrictMode>,
14
+);
15
16
// If you want your app to work offline and load faster, you can change
17
// unregister() to register() below. Note this comes with some pitfalls.
tsconfig.json
@@ -28,7 +28,6 @@
28
"declaration": true,
29
"declarationDir": "./dist",
30
"declarationMap": true,
31
- "sourceMap": true,
32
"importHelpers": true
33
},
34
"include": ["./src/**/*"],
0 commit comments