json
34 lines
666 Bytes
| 1 | { |
| 2 | "compilerOptions": { |
| 3 | "target": "es5", |
| 4 | "lib": [ |
| 5 | "dom", |
| 6 | "dom.iterable", |
| 7 | "esnext" |
| 8 | ], |
| 9 | "allowJs": true, |
| 10 | "skipLibCheck": true, |
| 11 | "esModuleInterop": true, |
| 12 | "allowSyntheticDefaultImports": true, |
| 13 | "strict": true, |
| 14 | "forceConsistentCasingInFileNames": true, |
| 15 | "module": "esnext", |
| 16 | "moduleResolution": "node", |
| 17 | "resolveJsonModule": true, |
| 18 | "isolatedModules": true, |
| 19 | "noEmit": true, |
| 20 | "jsx": "react", |
| 21 | "typeRoots": [ |
| 22 | "./types", |
| 23 | "./node_modules/@types" |
| 24 | ], |
| 25 | "noFallthroughCasesInSwitch": true |
| 26 | }, |
| 27 | "include": [ |
| 28 | "src", "server" |
| 29 | ], |
| 30 | "exclude": [ |
| 31 | "node_modules", |
| 32 | "types" |
| 33 | ] |
| 34 | } |