mirror of
				https://github.com/DerTyp7/dertyp7.github.io.git
				synced 2025-10-30 21:27:09 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
		
			834 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			834 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
| {
 | |
| 	"compilerOptions": {
 | |
| 		"target": "ES2020",
 | |
| 		"useDefineForClassFields": true,
 | |
| 		"lib": ["ES2020", "DOM", "DOM.Iterable"],
 | |
| 		"module": "ESNext",
 | |
| 		"skipLibCheck": true,
 | |
| 
 | |
| 		/* Bundler mode */
 | |
| 		"moduleResolution": "bundler",
 | |
| 		"allowImportingTsExtensions": true,
 | |
| 		"resolveJsonModule": true,
 | |
| 		"isolatedModules": true,
 | |
| 		"noEmit": true,
 | |
| 		"jsx": "react-jsx",
 | |
| 
 | |
| 		/* Linting */
 | |
| 		"strict": true,
 | |
| 		"noUnusedLocals": true,
 | |
| 		"noUnusedParameters": true,
 | |
| 		"noFallthroughCasesInSwitch": true,
 | |
| 
 | |
| 		"baseUrl": "./src",
 | |
| 		"paths": {
 | |
| 			"@/*": ["*"],
 | |
| 			"@components/*": ["components/*"],
 | |
| 			"@pages/*": ["pages/*"],
 | |
| 			"@styles/*": ["styles/*"],
 | |
| 			"@utils/*": ["utils/*"],
 | |
| 			"@hooks/*": ["hooks/*"],
 | |
| 			"@types/*": ["types/*"],
 | |
| 			"@assets/*": ["assets/*"]
 | |
| 		}
 | |
| 	},
 | |
| 	"include": ["src"],
 | |
| 	"references": [{ "path": "./tsconfig.node.json" }]
 | |
| }
 | 
