SPB Git forge

spb/market-atlas

Public
12commits 1branches 0releases
1.1 MBsize
maindefault branch
10 days agolast push
TypeScript 96.7% SQL 1.6% CSS 0.8% JavaScript 0.5%
820 B · 46 lines json
Raw Blame History
1{2  "compilerOptions": {3    "target": "ES2022",4    "lib": [5      "dom",6      "dom.iterable",7      "esnext"8    ],9    "allowJs": true,10    "skipLibCheck": true,11    "strict": true,12    "noUncheckedIndexedAccess": true,13    "noEmit": true,14    "esModuleInterop": true,15    "module": "esnext",16    "moduleResolution": "bundler",17    "resolveJsonModule": true,18    "isolatedModules": true,19    "jsx": "react-jsx",20    "incremental": true,21    "plugins": [22      {23        "name": "next"24      }25    ],26    "paths": {27      "@/*": [28        "./src/*"29      ]30    }31  },32  "include": [33    "next-env.d.ts",34    "**/*.ts",35    "**/*.tsx",36    ".next/types/**/*.ts",37    ".next/dev/types/**/*.ts",38    ".next-build/types/**/*.ts",39    ".next-build/dev/types/**/*.ts"40  ],41  "exclude": [42    "node_modules",43    "qa"44  ]45}46