website cleanup
This commit is contained in:
@@ -2,7 +2,13 @@
|
||||
"compilerOptions": {
|
||||
"target": "ES2022",
|
||||
"module": "ESNext",
|
||||
"lib": ["ES2022", "DOM", "dom", "dom.iterable", "esnext"],
|
||||
"lib": [
|
||||
"ES2022",
|
||||
"DOM",
|
||||
"dom",
|
||||
"dom.iterable",
|
||||
"esnext"
|
||||
],
|
||||
"moduleResolution": "bundler",
|
||||
"esModuleInterop": true,
|
||||
"jsx": "preserve",
|
||||
@@ -29,24 +35,52 @@
|
||||
"incremental": true,
|
||||
"noEmitOnError": true,
|
||||
"allowJs": true,
|
||||
"types": ["react", "react-dom"],
|
||||
"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"]
|
||||
"@/*": [
|
||||
"./*"
|
||||
],
|
||||
"@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/"],
|
||||
"include": [
|
||||
"app/",
|
||||
"components/",
|
||||
"hooks/",
|
||||
"lib/",
|
||||
"next-env.d.ts",
|
||||
"types/",
|
||||
"utilities/",
|
||||
".next/types/**/*.ts"
|
||||
],
|
||||
"exclude": [
|
||||
"**/*.test.ts",
|
||||
"**/*.test.tsx",
|
||||
|
||||
Reference in New Issue
Block a user