Advertisement
gabrieleb

tsconfig.json

Jan 16th, 2025
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.74 KB | Source Code | 0 0
  1. {
  2.   "compilerOptions": {
  3.     "target": "ES2022",
  4.     "useDefineForClassFields": true,
  5.     "lib": ["ES2022", "DOM", "DOM.Iterable"],
  6.     "module": "ESNext",
  7.     "skipLibCheck": true,
  8.  
  9.     /* Bundler mode */
  10.     "moduleResolution": "bundler",
  11.     "allowImportingTsExtensions": true,
  12.     "resolveJsonModule": true,
  13.     "isolatedModules": true,
  14.     "noEmit": true,
  15.     "jsx": "react-jsx",
  16.     "noImplicitAny": false,
  17.     "strictNullChecks": false,
  18.  
  19.     /* Linting */
  20.     "strict": true,
  21.     "noUnusedLocals": false,
  22.     "noUnusedParameters": false,
  23.     "noFallthroughCasesInSwitch": false,
  24.     "composite": true,
  25.     "allowSyntheticDefaultImports": true
  26.   },
  27.   "include": ["src", "vite.config.ts"],
  28.   "exclude": ["node_modules"]
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement