vmi-wd-frontend Public
| 1 | { |
| 2 | "compilerOptions": { |
| 3 | "lib": [ |
| 4 | "dom", |
| 5 | "dom.iterable", |
| 6 | "esnext" |
| 7 | ], |
| 8 | "allowJs": true, |
| 9 | "skipLibCheck": true, |
| 10 | "strict": true, |
| 11 | "noEmit": true, |
| 12 | "esModuleInterop": true, |
| 13 | "module": "esnext", |
| 14 | "moduleResolution": "bundler", |
| 15 | "resolveJsonModule": true, |
| 16 | "isolatedModules": true, |
| 17 | "jsx": "preserve", |
| 18 | "incremental": true, |
| 19 | "plugins": [ |
| 20 | { |
| 21 | "name": "next" |
| 22 | } |
| 23 | ], |
| 24 | "paths": { |
| 25 | "@/*": [ |
| 26 | "./*" |
| 27 | ] |
| 28 | }, |
| 29 | "target": "ES2017" |
| 30 | }, |
| 31 | "include": [ |
| 32 | "next-env.d.ts", |
| 33 | "**/*.ts", |
| 34 | "**/*.tsx", |
| 35 | ".next/types/**/*.ts" |
| 36 | ], |
| 37 | "exclude": [ |
| 38 | "node_modules" |
| 39 | ] |
| 40 | } |