-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
27 lines (27 loc) · 1.28 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
27
{
"compilerOptions": {
"target": "es5",
"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": {
"@/*": ["./*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "components/modals/login/form.jsx", "validations/login.js", "validations/feedback.js", "hooks/use-context.js", "contexts/context-provider.jsx", "constants/about.js", "components/hero/index.jsx", "components/navbar/nav-link.jsx", "components/navbar/index.jsx", "components/modals/login/index.jsx", "app/page.jsx", "app/layout.jsx", "app/error.jsx", "app/directory/page.jsx", "app/contact/page.jsx", "app/contact/error.jsx", "app/contact/_components/form.jsx", "app/contact/_components/details.jsx", "app/about/page.jsx", "app/about/_components/quote.jsx", "app/about/_components/partnerships.jsx", "app/about/_components/mission.jsx", "app/directory/campsites/[id]/page.jsx", "app/directory/_components/card.jsx"],
"exclude": ["node_modules"]
}