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.
		
		
		
		
		
			
		
			
				
	
	
		
			62 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			JSON
		
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.2 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/*": [
 | 
						|
        "app/components/*"
 | 
						|
      ],
 | 
						|
      "@lib/*": [
 | 
						|
        "lib/*"
 | 
						|
      ],
 | 
						|
      "@styles/*": [
 | 
						|
        "app/styles/*"
 | 
						|
      ]
 | 
						|
    }
 | 
						|
  },
 | 
						|
  "include": [
 | 
						|
    "next-env.d.ts",
 | 
						|
    "**/*.ts",
 | 
						|
    "**/*.tsx",
 | 
						|
    ".next/types/**/*.ts"
 | 
						|
  ],
 | 
						|
  "exclude": [
 | 
						|
    "node_modules"
 | 
						|
  ]
 | 
						|
}
 |