31 lines
864 B
JSON
31 lines
864 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2017",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"incremental": true,
|
|
"paths": {
|
|
"@/components/*": ["./src/components/*"],
|
|
"@/contexts/*": ["./src/contexts/*"],
|
|
"@/providers/*": ["./src/providers/*"],
|
|
"@/styles/*": ["./src/styles/*"],
|
|
"@/data/*": ["./src/data/*"],
|
|
"@/types/*": ["./src/types/*"],
|
|
"@/constants/*": ["./src/constants/*"],
|
|
"@/utils/*": ["./src/utils/*"],
|
|
"@/hooks/*": ["./src/hooks/*"]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
|
"exclude": ["node_modules"]
|
|
}
|