-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtsconfig.json
31 lines (31 loc) · 1.41 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
31
{
"compilerOptions": {
"target": "es6",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react",
"noImplicitAny": false,
"noFallthroughCasesInSwitch": true
},
"include": [
"src/components/*",
"src/static/*",
"src/App.tsx",
"src/index.jsx",
".d.ts", "src/components/OrgFinder/OrganizationMarker.tsx", "src/components/OrgFinder/MapComponent.tsx", "src/components/OrgFinder/FindOrganization.tsx", "src/components/SignUp/OrganizationSignup.tsx", "src/components/SignUp/Signup.tsx", "src/components/SignUp/PersonSignup.tsx", "src/components/AboutUs/OurPartners.tsx", "src/components/AboutUs/OurTeam.tsx", "src/components/AboutUs/OurMission.tsx", "src/components/LandingPages/WorkerLanding.tsx", "src/components/LandingPages/ClientLanding.tsx", "src/components/AccountSecurity/AdminPanel.tsx", "src/components/AccountSecurity/MyAccount.tsx", "src/components/AccountSecurity/IdleTimeOutModal.tsx", "src/components/AccountSecurity/ResetPassword.tsx", "src/components/AccountSecurity/ForgotPassword.tsx", "src/components/AccountSecurity/IssueReport.tsx"
]
}