ci: add some configs

This commit is contained in:
Riccardo
2024-06-21 00:28:14 +02:00
parent 7e00093af1
commit fcbec72816
4 changed files with 60 additions and 3 deletions

View File

@@ -1,5 +1,6 @@
{
"compilerOptions": {
"target": "ES5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
@@ -18,9 +19,10 @@
}
],
"paths": {
"@/*": ["./*"]
"@app/*": ["./app/*"],
"@prisma/*": ["./prisma/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
"exclude": ["node_modules", ".yarn", ".next", ".vercel", ".vscode"]
}