mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
1
2{
3 "compilerOptions": {
4 "target": "ES5",
5 "lib": ["DOM", "DOM.Iterable", "ESNext"],
6 "types": ["vite/client"],
7 "allowJs": false,
8 "skipLibCheck": true,
9 "esModuleInterop": false,
10 "allowSyntheticDefaultImports": true,
11 "strict": true,
12 "forceConsistentCasingInFileNames": true,
13 "module": "ESNext",
14 "moduleResolution": "Node",
15 "resolveJsonModule": true,
16 "isolatedModules": true,
17 "noEmit": true,
18 "jsx": "react",
19 "jsxFactory": "h",
20 "jsxFragmentFactory": "Fragment",
21 "downlevelIteration": true
22 },
23 "include": ["src"]
24}