website cleanup
This commit is contained in:
@@ -1,16 +1,34 @@
|
||||
{
|
||||
"extends": "../../tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"lib": ["dom", "dom.iterable", "esnext"],
|
||||
"allowJs": true,
|
||||
"module": "esnext",
|
||||
"target": "ES2022",
|
||||
"module": "ESNext",
|
||||
"lib": ["ES2022", "DOM", "dom", "dom.iterable", "esnext"],
|
||||
"moduleResolution": "bundler",
|
||||
"baseUrl": ".",
|
||||
"esModuleInterop": true,
|
||||
"jsx": "preserve",
|
||||
"incremental": true,
|
||||
"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": [
|
||||
{
|
||||
@@ -19,9 +37,15 @@
|
||||
],
|
||||
"paths": {
|
||||
"@/*": ["./*"],
|
||||
"@testing/*": ["../../testing/*"]
|
||||
"@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", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
||||
"exclude": ["node_modules", ".next"]
|
||||
"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"]
|
||||
}
|
||||
Reference in New Issue
Block a user