Configure ts

This commit is contained in:
Sakura Knoll
2021-12-20 05:14:23 +09:00 Unverified
parent 3585f53757
commit d3367463b3
4 changed files with 15 additions and 29 deletions
+5 -14
View File
@@ -1,14 +1,11 @@
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": false,
"strict": true,
"noUnusedLocals": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"incremental": true,
@@ -19,12 +16,6 @@
"isolatedModules": true,
"jsx": "preserve"
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules"
]
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}