Typescriptのプロダクションコードでfs.existSyncを使うようにした。Node.jsのAPIなんでそれは当然動くんだけど、このコードをテストしたい。テストするために、fs.existSyncをsinonでモックしようとしたところ次のようなエラーになった。 existsSyncStub = sinon.stub(fs, "existsSync"); // TypeError: Descriptor for property existsSync is non-configurable and non-writable non-configurable and non-writab…