59 lines
1 KiB
JSON
59 lines
1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2017",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"allowJs": false,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/components/*": [
|
|
"src/components/*"
|
|
],
|
|
"@/context/*": [
|
|
"src/context/*"
|
|
],
|
|
"@/services/*": [
|
|
"src/services/*"
|
|
],
|
|
"@/utils/*": [
|
|
"src/utils/*"
|
|
],
|
|
"@/types/*": [
|
|
"src/types/*"
|
|
],
|
|
"@/config/*": [
|
|
"src/config/*"
|
|
],
|
|
"@/data/*": [
|
|
"src/data/*"
|
|
]
|
|
},
|
|
"incremental": true,
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
]
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".next/types/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|