1
Fork 0
mirror of https://github.com/Steffo99/unisteffo.git synced 2025-02-16 15:53:58 +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": { "files.exclude": {
"node_modules/**": true, "node_modules/**": true,
".idea/**": true, ".idea/**": true
} },
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true
} }

View file

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