mirror of
				https://github.com/Wan-Video/Wan2.1.git
				synced 2025-11-04 06:15:17 +00:00 
			
		
		
		
	- Add root package.json and turbo.json - Add Next.js config files - Add FastAPI environment example - Add PWA manifest - Add ESLint and Prettier config 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			28 lines
		
	
	
		
			602 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			602 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
{
 | 
						|
  "compilerOptions": {
 | 
						|
    "target": "ES2020",
 | 
						|
    "lib": ["dom", "dom.iterable", "esnext"],
 | 
						|
    "allowJs": true,
 | 
						|
    "skipLibCheck": true,
 | 
						|
    "strict": true,
 | 
						|
    "noEmit": true,
 | 
						|
    "esModuleInterop": true,
 | 
						|
    "module": "esnext",
 | 
						|
    "moduleResolution": "bundler",
 | 
						|
    "resolveJsonModule": true,
 | 
						|
    "isolatedModules": true,
 | 
						|
    "jsx": "preserve",
 | 
						|
    "incremental": true,
 | 
						|
    "plugins": [
 | 
						|
      {
 | 
						|
        "name": "next"
 | 
						|
      }
 | 
						|
    ],
 | 
						|
    "paths": {
 | 
						|
      "@/*": ["./src/*"]
 | 
						|
    }
 | 
						|
  },
 | 
						|
  "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
 | 
						|
  "exclude": ["node_modules"]
 | 
						|
}
 |