51 lines
1.6 KiB
JSON
51 lines
1.6 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"lib": ["ES2022", "DOM", "dom", "dom.iterable", "esnext"],
|
|
"moduleResolution": "bundler",
|
|
"esModuleInterop": true,
|
|
"jsx": "preserve",
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"alwaysStrict": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"baseUrl": ".",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"incremental": true,
|
|
"noEmitOnError": true,
|
|
"allowJs": true,
|
|
"types": ["react", "react-dom"],
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"paths": {
|
|
"@/*": ["./*"],
|
|
"@testing/*": ["../../testing/*"],
|
|
"@/lib/dtos": ["./lib/dtos"],
|
|
"@/lib/view-models": ["./lib/view-models"],
|
|
"@/lib/presenters": ["./lib/presenters"],
|
|
"@/lib/services": ["./lib/services"],
|
|
"@/lib/api": ["./lib/api"],
|
|
"@/lib/types": ["./lib/types"]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "app/", "components/", "hooks/", "lib/", "types/", "utilities/"],
|
|
"exclude": ["../../core/**", "../../adapters/**", "../../apps/api/**", "../../scripts/**", "../../testing/**", "../../html-dumps/**", "../../html-dumps-optimized/**", "../../nginx/**", "../../plans/**", "../../resources/**", "../../docs/**", "node_modules", ".next"]
|
|
} |