65 lines
1.1 KiB
JSON
65 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"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,
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"paths": {
|
|
"@/actions/*": [
|
|
"./actions/*"
|
|
],
|
|
"@/config/*": [
|
|
"./config/*"
|
|
],
|
|
"@/hooks/*": [
|
|
"./hooks/*"
|
|
],
|
|
"@/data/*": [
|
|
"./data/*"
|
|
],
|
|
"@/styles/*": [
|
|
"./styles/*"
|
|
],
|
|
"@/locales/*": [
|
|
"./locales/*"
|
|
],
|
|
"@/img/*": [
|
|
"./resources/images/*"
|
|
],
|
|
"@/components/*": [
|
|
"./components/*"
|
|
],
|
|
"@/*": [
|
|
"./*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".next/types/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|