1
Fork 0
mirror of https://github.com/Steffo99/unisteffo.git synced 2024-11-21 23:44:22 +00:00

Modify tsconfig.json as suggested

This commit is contained in:
Steffo 2023-03-15 11:12:55 +00:00 committed by GitHub
parent 80a0368880
commit f5e40f8702
Signed by: github
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 5 deletions

View file

@ -1,6 +1,8 @@
{
"files.exclude": {
"node_modules/**": true,
".idea/**": true,
}
".idea/**": true
},
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true
}

View file

@ -19,11 +19,17 @@
"jsx": "preserve",
"incremental": true,
"noImplicitAny": false,
"plugins": [
{
"name": "next"
}
]
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
"**/*.tsx",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"