-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
23 lines (23 loc) · 951 Bytes
/
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
{
"compilerOptions": {
"paths": {
"@/components/*": ["./components/*"],
"@/styles/*": ["./styles/*"]
},
"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"
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "components/navbar/navbar.styles.ts", "components/navbar/navbar.component.jsx", "components/contact/contact.component.jsx", "components/image-container/image-container.component.tsx", "pages/index.tsx", "pages/_document.tsx", "components/header/header.component.tsx", "components/button/button.styles.ts", "components/button/button.component.jsx", "utils/posts.ts"],
"exclude": ["node_modules"]
}