-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
24 lines (24 loc) · 1.04 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
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "src/pages/api/auth/[...auth0].js", "src/supabase/supabase.config.js", "src/pages/api/reset_password.js", "src/pages/api/user_profile.js", "src/pages/preferences.jsx", "src/pages/api/change_username.js", "src/pages/api/is_profile_complete.js", "src/pages/api/get_user_from_username.js", "src/pages/index.jsx", "src/pages/user/[username].jsx", "src/pages/api/add_post.js", "src/pages/search.jsx", "src/pages/follow-requests.jsx", "src/pages/api/get_following.js", "src/pages/new-post.jsx"],
"exclude": ["node_modules"]
}