eny.space Landingpage
1{ 2 "compilerOptions": { 3 "target": "ES2019", 4 "lib": [ 5 "dom", 6 "dom.iterable", 7 "esnext" 8 ], 9 "allowJs": true, 10 "skipLibCheck": true, 11 "strict": true, 12 "forceConsistentCasingInFileNames": true, 13 "noEmit": true, 14 "esModuleInterop": true, 15 "module": "esnext", 16 "moduleResolution": "node", 17 "resolveJsonModule": true, 18 "allowSyntheticDefaultImports": true, 19 "isolatedModules": true, 20 "incremental": true, 21 "jsx": "react-jsx", 22 "baseUrl": ".", 23 "paths": { 24 "@/actions/*": [ 25 "app/actions/*" 26 ], 27 "@/components/*": [ 28 "app/components/*" 29 ], 30 "@/config": [ 31 "config/" 32 ], 33 "@/lib/*": [ 34 "lib/*" 35 ], 36 "@/utils/*": [ 37 "utils/*" 38 ] 39 }, 40 "plugins": [ 41 { 42 "name": "next" 43 } 44 ] 45 }, 46 "exclude": [ 47 "node_modules" 48 ], 49 "include": [ 50 "next-env.d.ts", 51 "**/*.ts", 52 "**/*.tsx", 53 ".next/types/**/*.ts", 54 ".next/dev/types/**/*.ts" 55 ] 56}