-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 1.24 KB
/
tsconfig.json
File metadata and controls
26 lines (26 loc) · 1.24 KB
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/components/NavBar/NavBar.jsx", "src/components/Common/Dialog.jsx", "src/components/NavBar/SearchModal.jsx", "src/components/ToolBox/ToolsImageCard.jsx", "src/components/ToolBox/ToolboxCarouselAnimation.jsx", "src/components/ToolBox/ToolboxHeroWithEmailSignup.jsx", "src/components/ToolBox/toolboxSearchBox.jsx", "src/components/Footer/StickyFooterCTA.jsx", "src/components/ToolBox/pagination.jsx", "src/app/page.jsx", "src/components/details/SocialShare.jsx", "src/components/newsletter/NewsletterSection.jsx", "src/components/details/AuthorCard.jsx", "src/components/details/ToolIconCard.jsx", "src/components/details/HeroCardSectionSimple.jsx", "src/app/packages/[slug]/page.jsx"],
"exclude": ["node_modules"]
}