-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
26 lines (26 loc) · 1.47 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "src/app/sections/quicklinkssection/QuickLinks.jsx", "src/app/sections/abouteventssection/AboutEvents.jsx", "src/app/components/nav-bar/NavBar.jsx", "src/app/components/header/Header.jsx", "src/app/components/footer/Footer.jsx", "src/app/components/cards/treatmentcard/TreatmentCard.jsx", "src/app/components/cards/locationcard/LocationCard.jsx", "src/app/pages/cateracts/Cataracts.jsx", "src/app/pages/companyinformation/AboutUs.jsx", "src/app/pages/companyinformation/Careers.jsx", "src/app/pages/companyinformation/ContactUs.jsx", "src/app/pages/companyinformation/Events.jsx", "src/app/pages/companyinformation/HealthcareProfessionals.jsx", "src/app/pages/companyinformation/News.jsx", "src/app/pages/companyinformation/Optemetrists.jsx", "src/app/pages/locations/Locations.jsx", "src/app/pages/patientinfo/PatientInfo.jsx", "src/app/pages/patientjourney/PatientJourney.jsx", "src/app/pages/treatments/Treatments.jsx"],
"exclude": ["node_modules"]
}