forked from manu-r12/Portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
27 lines (27 loc) · 1.05 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
{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "components/Beam/beam.js", "components/Reflect/reflect.js", "components/Hero/hero.tsx", "app/page.tsx", "components/Cube/scene.tsx", "components/Cube/cube.jsx", "components/Animated-Blob/Blob.js", "components/Animated-Blob/vertexShader.js", "components/Animated-Blob/fragmentShader.js", "components/UI/Title/textReveal.jsx", "components/About/about.jsx", "animations/Blob/index.jsx", "animations/blob.jsx", "components/Skills/ui-elements/skill-card.jsx"],
"exclude": ["node_modules"]
}