46 lines
1000 B
JSON
46 lines
1000 B
JSON
{
|
|
"compilerOptions": {
|
|
"incremental": true,
|
|
"target": "ES6",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"types": ["node", "minimatch"],
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"composite": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/app/*": ["app/*"],
|
|
"@/components/*": ["components/*"],
|
|
"@/lib/*": ["lib/*"],
|
|
"@/hooks/*": ["hooks/*"],
|
|
"@/models/*": ["models/*"],
|
|
"@/contexts/*": ["contexts/*"]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"strictNullChecks": false
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.js",
|
|
"**/*.mjs",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"**/*.json",
|
|
".next/types/**/*.ts"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|