format tsconfig

This commit is contained in:
Maze Winther
2025-06-22 10:05:01 +02:00
parent f834e39afd
commit a0ca5bf703

View File

@ -1,7 +1,11 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "ES2017", "target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"], "lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true, "allowJs": true,
"skipLibCheck": true, "skipLibCheck": true,
"strict": true, "strict": true,
@ -19,14 +23,19 @@
} }
], ],
"paths": { "paths": {
"@/*": ["./src/*"], "@/*": [
"./src/*"
]
} }
}, },
"include": [ "include": [
"next-env.d.ts",
"**/*.ts", "**/*.ts",
"**/*.tsx", "**/*.tsx",
"apps/web/.next/types/**/*.ts", "apps/web/.next/types/**/*.ts",
"next-env.d.ts",
".next/types/**/*.ts"
], ],
"exclude": ["node_modules"] "exclude": [
} "node_modules"
]
}