mirror of https://github.com/MaxLeiter/Drift
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			JSON
		
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			JSON
		
	
{
 | 
						|
	"compilerOptions": {
 | 
						|
		"plugins": [
 | 
						|
			{
 | 
						|
				"name": "typescript-plugin-css-modules"
 | 
						|
			},
 | 
						|
			{
 | 
						|
				"name": "next"
 | 
						|
			}
 | 
						|
		],
 | 
						|
		"target": "es2020",
 | 
						|
		"lib": ["dom", "dom.iterable", "esnext"],
 | 
						|
		"allowJs": true,
 | 
						|
		"skipLibCheck": true,
 | 
						|
		"strict": true,
 | 
						|
		"forceConsistentCasingInFileNames": true,
 | 
						|
		"noImplicitAny": true,
 | 
						|
		"strictNullChecks": true,
 | 
						|
		"strictFunctionTypes": true,
 | 
						|
		"strictBindCallApply": true,
 | 
						|
		"strictPropertyInitialization": true,
 | 
						|
		"noImplicitThis": true,
 | 
						|
		"alwaysStrict": true,
 | 
						|
		"noUnusedLocals": false,
 | 
						|
		"noUnusedParameters": true,
 | 
						|
		"noEmit": true,
 | 
						|
		"esModuleInterop": true,
 | 
						|
		"module": "esnext",
 | 
						|
		"moduleResolution": "node",
 | 
						|
		"allowSyntheticDefaultImports": true,
 | 
						|
		"resolveJsonModule": true,
 | 
						|
		"isolatedModules": true,
 | 
						|
		"jsx": "preserve",
 | 
						|
		"incremental": true,
 | 
						|
		"baseUrl": ".",
 | 
						|
		"paths": {
 | 
						|
			"@components/*": ["src/app/components/*"],
 | 
						|
			"@lib/*": ["src/lib/*"],
 | 
						|
			"@styles/*": ["src/app/styles/*"]
 | 
						|
		}
 | 
						|
	},
 | 
						|
	"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
 | 
						|
	"exclude": ["node_modules"]
 | 
						|
}
 |