- ThemeProvider will change the default Material UI looks. CSSBaseline in ThemeProvider will reset and normalize the browser's styling, making sure our app looks the same in any browser. - ThemeProvider will be used as the parent of any styled components.
		
			
				
	
	
		
			22 lines
		
	
	
		
			524 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			524 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
| {
 | |
|   "compilerOptions": {
 | |
|     "baseUrl": "./",
 | |
|     "target": "es5",
 | |
|     "lib": ["dom", "dom.iterable", "esnext"],
 | |
|     "allowJs": true,
 | |
|     "skipLibCheck": true,
 | |
|     "esModuleInterop": true,
 | |
|     "allowSyntheticDefaultImports": true,
 | |
|     "strict": true,
 | |
|     "forceConsistentCasingInFileNames": true,
 | |
|     "noFallthroughCasesInSwitch": true,
 | |
|     "module": "esnext",
 | |
|     "moduleResolution": "node",
 | |
|     "resolveJsonModule": true,
 | |
|     "isolatedModules": true,
 | |
|     "noEmit": true,
 | |
|     "jsx": "react-jsx"
 | |
|   },
 | |
|   "include": ["src"]
 | |
| }
 |