Skip to content

Commit 0ccc498

Browse files
committed
tsconfig - set outDir, remove noUnusedLocals, remove tsBuildInfoFile path setting
1 parent 81a5e01 commit 0ccc498

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@
1313
"isolatedModules": true,
1414
"noEmit": true,
1515
"jsx": "react-jsx",
16+
"outDir": "./dist/tsc",
1617

1718
/* Linting */
1819
"strict": true,
19-
"noUnusedLocals": true,
20+
"noUnusedLocals": false,
2021
"noUnusedParameters": true,
2122
"noFallthroughCasesInSwitch": true,
2223

2324
"strictNullChecks": true,
2425
"forceConsistentCasingInFileNames": true,
25-
"tsBuildInfoFile": "D:\\Temp\\other\\ops.tsbuildinfo",
2626
"incremental": true
2727
},
2828
"include": ["./src", "vite.config.ts", "eslint.config.js"],

tsconfig.node.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"module": "ESNext",
66
"moduleResolution": "bundler",
77
"allowSyntheticDefaultImports": true,
8-
"strict": true
8+
"strict": true,
9+
"outDir": "./dist/tsc"
910
},
1011
"include": ["vite.config.ts", "eslint.config.js"]
1112
}

0 commit comments

Comments
 (0)