32 lines
724 B
JSON
32 lines
724 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "es5",
|
||
|
"lib": ["dom", "dom.iterable", "esnext"],
|
||
|
"allowJs": true,
|
||
|
"skipLibCheck": true,
|
||
|
"strict": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"noEmit": true,
|
||
|
"esModuleInterop": true,
|
||
|
"module": "esnext",
|
||
|
"moduleResolution": "node",
|
||
|
"resolveJsonModule": true,
|
||
|
"isolatedModules": true,
|
||
|
"jsx": "preserve",
|
||
|
"incremental": true,
|
||
|
"baseUrl": ".",
|
||
|
"paths": {
|
||
|
"@/ui/*": ["ui/*"],
|
||
|
"@/lib/*": ["lib/*"],
|
||
|
"@/styles/*": ["styles/*"]
|
||
|
},
|
||
|
"plugins": [
|
||
|
{
|
||
|
"name": "next"
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
||
|
"exclude": ["node_modules"]
|
||
|
}
|