-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
30 lines (30 loc) · 2.01 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
28
29
30
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"incremental": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve"
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
, "components/Dashboard/AllCommunityCard.jsx", "lib/magic.js", "components/ChatPage/RealTimeChat.jsx", "components/ChatPage/MagicLink.jsx", "components/ChatPage/LoginPage.jsx", "components/ChatPage/ChatApp.jsx", "components/AiChat/InputBox.jsx", "components/AiChat/index.js", "components/AiChat/ChatCompoents.jsx", "firebase.js", "utils/index.jsx", "pages/uploadAPodcast.jsx", "pages/quiz.jsx", "pages/profileOnboarding.jsx", "pages/podcast.jsx", "pages/index.jsx", "pages/dashboard.jsx", "pages/communities.jsx", "pages/beAMentor.jsx", "pages/aichat.jsx", "pages/_app.jsx", "lib/mindb.js", "lib/getToken.js", "layouts/DefaultLayout.jsx", "context/UserContext.jsx", "context/FlowContext.jsx", "context/ContractProvider.jsx", "constants/contract.js", "components/Sidebar.jsx", "components/Navbar.jsx", "components/Links.jsx", "components/quiz/WinModal.jsx", "components/quiz/index.js", "components/quiz/FailedModal.jsx", "components/index.jsx", "components/Container.jsx", "components/ConnectModal.jsx", "components/podcast/PodcastCard.jsx", "components/Dashboard/PodcastCard.jsx", "components/Dashboard/NfTBadge.jsx", "components/Dashboard/LearnAiCard.jsx", "components/Dashboard/IntroCard.jsx", "components/Dashboard/index.js", "components/Dashboard/DashboardLeft.jsx", "components/Dashboard/DahboardRight.jsx", "components/Dashboard/AllMentorCard.jsx", "components/community/Messages.jsx", "components/community/InputBox.jsx", "components/community/index.jsx", "components/community/CommunityCard.jsx" ],
"exclude": [
"node_modules"
]
}