follow docs on typescript, eslint, prettier

This commit is contained in:
Thomas Ruoff
2022-09-08 23:14:20 +02:00
committed by Thomas Ruoff
parent 9082ac5f0f
commit c64a83ef78
7 changed files with 11 additions and 19 deletions

View File

@@ -5,16 +5,14 @@
"allowJs": true,
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"incremental": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true
"jsx": "preserve"
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]