shouldn't that be tsconfig.tsbuildinfo and not "just" .tsbuildinfo?
at least that is what the file is called that gets created by my ts version (4.8.4)
also that file lives in the lib folder?
or am I looking at the wrong file? 🤔
{
"scripts": {
"ts": "wireit"
},
"wireit": {
"ts": {
"command": "tsc --build --pretty",
"clean": "if-file-deleted",
"files": ["src/**/*.ts", "tsconfig.json"],
- "output": ["lib/**", ".tsbuildinfo"]
+ "output": ["lib/**", "lib/tsconfig.tsbuildinfo"]
}
}
}
shouldn't that be
tsconfig.tsbuildinfoand not "just".tsbuildinfo?at least that is what the file is called that gets created by my ts version (4.8.4)
also that file lives in the
libfolder?or am I looking at the wrong file? 🤔
{ "scripts": { "ts": "wireit" }, "wireit": { "ts": { "command": "tsc --build --pretty", "clean": "if-file-deleted", "files": ["src/**/*.ts", "tsconfig.json"], - "output": ["lib/**", ".tsbuildinfo"] + "output": ["lib/**", "lib/tsconfig.tsbuildinfo"] } } }