49 lines
1.1 KiB
JSON
49 lines
1.1 KiB
JSON
![]() |
{
|
||
|
"compilerOptions": {
|
||
|
"target": "ES2020",
|
||
|
"lib": ["dom", "dom.iterable", "es6"],
|
||
|
"allowJs": true,
|
||
|
"skipLibCheck": true,
|
||
|
"strict": true,
|
||
|
"noEmit": true,
|
||
|
"esModuleInterop": true,
|
||
|
"module": "esnext",
|
||
|
"moduleResolution": "bundler",
|
||
|
"resolveJsonModule": true,
|
||
|
"isolatedModules": true,
|
||
|
"jsx": "preserve",
|
||
|
"incremental": true,
|
||
|
"plugins": [
|
||
|
{
|
||
|
"name": "next"
|
||
|
}
|
||
|
],
|
||
|
"baseUrl": ".",
|
||
|
"paths": {
|
||
|
"@/*": ["./src/*"],
|
||
|
"@/components/*": ["./src/components/*"],
|
||
|
"@/hooks/*": ["./src/hooks/*"],
|
||
|
"@/lib/*": ["./src/lib/*"],
|
||
|
"@/types/*": ["./src/types/*"],
|
||
|
"@/utils/*": ["./src/utils/*"],
|
||
|
"@/store/*": ["./src/store/*"]
|
||
|
},
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"noImplicitReturns": true,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
"noUncheckedIndexedAccess": true,
|
||
|
"exactOptionalPropertyTypes": true
|
||
|
},
|
||
|
"include": [
|
||
|
"next-env.d.ts",
|
||
|
"**/*.ts",
|
||
|
"**/*.tsx",
|
||
|
".next/types/**/*.ts"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
".next",
|
||
|
"out",
|
||
|
"dist"
|
||
|
]
|
||
|
}
|