35 lines
		
	
	
		
			725 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			725 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
{
 | 
						|
  "files": [],
 | 
						|
  "references": [
 | 
						|
    {
 | 
						|
      "path": "./tsconfig.app.json"
 | 
						|
    },
 | 
						|
    {
 | 
						|
      "path": "./tsconfig.node.json"
 | 
						|
    }
 | 
						|
  ],
 | 
						|
  "compilerOptions": {
 | 
						|
    "target": "ES2022",
 | 
						|
    "jsx": "react-jsx",
 | 
						|
    "module": "ESNext",
 | 
						|
    "lib": ["ES2022", "DOM", "DOM.Iterable"],
 | 
						|
    "types": ["vite/client"],
 | 
						|
 | 
						|
    /* Bundler mode */
 | 
						|
    "moduleResolution": "bundler",
 | 
						|
    "allowImportingTsExtensions": false,
 | 
						|
    "verbatimModuleSyntax": true,
 | 
						|
    
 | 
						|
    /* Linting */
 | 
						|
    "skipLibCheck": true,
 | 
						|
    "strict": true,
 | 
						|
    "noUnusedLocals": true,
 | 
						|
    "noUnusedParameters": true,
 | 
						|
    "noFallthroughCasesInSwitch": true,
 | 
						|
    "noUncheckedSideEffectImports": true,
 | 
						|
    "baseUrl": ".",
 | 
						|
    "paths": {
 | 
						|
      "@/*": ["./src/*"]
 | 
						|
    }
 | 
						|
  }
 | 
						|
} |