this repo has no description www.baileykane.co/
at main 41 lines 899 B view raw
1{ 2 "compilerOptions": { 3 "target": "ES2017", 4 "lib": ["dom", "dom.iterable", "esnext"], 5 "allowJs": true, 6 "skipLibCheck": true, 7 "strict": false, 8 "noEmit": true, 9 "incremental": true, 10 "module": "esnext", 11 "esModuleInterop": true, 12 "moduleResolution": "node", 13 "resolveJsonModule": true, 14 "isolatedModules": true, 15 "jsx": "preserve", 16 "baseUrl": ".", 17 "paths": { 18 "@/types/*": ["types/*"], 19 "@/components/*": ["components/*"], 20 "@/lib/*": ["lib/*"], 21 "@/pages/*": ["pages/*"], 22 "@/app/*": ["app/*"], 23 "@/styles/*": ["styles/*"], 24 "@/public/*": ["public/*"] 25 }, 26 "plugins": [ 27 { 28 "name": "next" 29 } 30 ], 31 "strictNullChecks": false 32 }, 33 "include": [ 34 "**/*.ts", 35 "**/*.tsx", 36 "next-env.d.ts", 37 "types/*.{ts,tsx}", 38 ".next/types/**/*.ts" 39 ], 40 "exclude": ["node_modules"] 41}