├── .gitattributes ├── .github ├── images │ ├── linux.png │ ├── macos.png │ └── windows.png └── workflows │ └── build.yml ├── .gitignore ├── CREDITS.md ├── Dockerfile ├── HELP.md ├── LICENSE.md ├── README.md ├── assets ├── boot.gif ├── entitlements.plist ├── icon.icns └── icon.ico ├── bios ├── COPYING.LESSER ├── seabios.bin └── vgabios.bin ├── docs ├── docker-instructions.md ├── docker-kubernetes-gitpod.md └── qemu.md ├── forge.config.js ├── issue_template.md ├── package.json ├── patches └── @electron+packager+18.3.6.patch ├── src ├── cache.ts ├── constants.ts ├── less │ ├── emulator.less │ ├── info.less │ ├── root.less │ ├── settings.less │ ├── start.less │ ├── status.less │ └── vendor │ │ ├── 95.ttf │ │ ├── 95css.css │ │ ├── LICENSE │ │ ├── bg-pattern.png │ │ ├── dropdown.png │ │ ├── windows.woff │ │ └── windows.woff2 ├── main │ ├── about-panel.ts │ ├── fileserver │ │ ├── encoding.ts │ │ ├── fileserver.ts │ │ ├── hide-files.ts │ │ ├── page-directory-listing.ts │ │ └── page-error.ts │ ├── ipc.ts │ ├── logging.ts │ ├── main.ts │ ├── menu.ts │ ├── session.ts │ ├── settings.ts │ ├── squirrel.ts │ ├── update.ts │ └── windows.ts ├── renderer │ ├── app.tsx │ ├── card-settings.tsx │ ├── card-start.tsx │ ├── emulator-info.tsx │ ├── emulator.tsx │ ├── global.d.ts │ ├── lib │ │ ├── LICENSE.md │ │ ├── build │ │ │ └── v86.wasm │ │ └── libv86.js │ ├── start-menu.tsx │ ├── status.tsx │ └── utils │ │ ├── get-state-path.ts │ │ └── reset-state.ts └── utils │ ├── devmode.ts │ └── disk-image-size.ts ├── static ├── boot-fresh.png ├── cdrom.png ├── entitlements.plist ├── floppy.png ├── index.html ├── reset-state.png ├── reset.png ├── run.png ├── select-cdrom.png ├── select-floppy.png ├── settings.png ├── show-disk-image.png ├── start.png └── www │ ├── apps.htm │ ├── buttons │ ├── macos.gif │ ├── madewithelectron.gif │ └── msie.gif │ ├── credits.htm │ ├── help.htm │ ├── home.htm │ ├── images │ ├── bg.gif │ ├── desktop.gif │ ├── doc.gif │ ├── folder.gif │ ├── help.gif │ ├── ie.gif │ ├── network.gif │ └── programs.gif │ ├── index.htm │ └── navigation.htm ├── tools ├── add-macos-cert.sh ├── check-links.js ├── download-disk.ps1 ├── download-disk.sh ├── generateAssets.js ├── parcel-build.js ├── parcel-watch.js ├── resedit.js ├── run-bin.js └── tsc.js └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- 1 | text eol=lf 2 | -------------------------------------------------------------------------------- /.github/images/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/.github/images/linux.png -------------------------------------------------------------------------------- /.github/images/macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/.github/images/macos.png -------------------------------------------------------------------------------- /.github/images/windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/.github/images/windows.png -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/.gitignore -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/CREDITS.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/Dockerfile -------------------------------------------------------------------------------- /HELP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/HELP.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/README.md -------------------------------------------------------------------------------- /assets/boot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/assets/boot.gif -------------------------------------------------------------------------------- /assets/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/assets/entitlements.plist -------------------------------------------------------------------------------- /assets/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/assets/icon.icns -------------------------------------------------------------------------------- /assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/assets/icon.ico -------------------------------------------------------------------------------- /bios/COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/bios/COPYING.LESSER -------------------------------------------------------------------------------- /bios/seabios.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/bios/seabios.bin -------------------------------------------------------------------------------- /bios/vgabios.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/bios/vgabios.bin -------------------------------------------------------------------------------- /docs/docker-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/docs/docker-instructions.md -------------------------------------------------------------------------------- /docs/docker-kubernetes-gitpod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/docs/docker-kubernetes-gitpod.md -------------------------------------------------------------------------------- /docs/qemu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/docs/qemu.md -------------------------------------------------------------------------------- /forge.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/forge.config.js -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/issue_template.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/package.json -------------------------------------------------------------------------------- /patches/@electron+packager+18.3.6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/patches/@electron+packager+18.3.6.patch -------------------------------------------------------------------------------- /src/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/cache.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/less/emulator.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/less/emulator.less -------------------------------------------------------------------------------- /src/less/info.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/less/info.less -------------------------------------------------------------------------------- /src/less/root.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/less/root.less -------------------------------------------------------------------------------- /src/less/settings.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/less/settings.less -------------------------------------------------------------------------------- /src/less/start.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/less/start.less -------------------------------------------------------------------------------- /src/less/status.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/less/status.less -------------------------------------------------------------------------------- /src/less/vendor/95.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/less/vendor/95.ttf -------------------------------------------------------------------------------- /src/less/vendor/95css.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/less/vendor/95css.css -------------------------------------------------------------------------------- /src/less/vendor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/less/vendor/LICENSE -------------------------------------------------------------------------------- /src/less/vendor/bg-pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/less/vendor/bg-pattern.png -------------------------------------------------------------------------------- /src/less/vendor/dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/less/vendor/dropdown.png -------------------------------------------------------------------------------- /src/less/vendor/windows.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/less/vendor/windows.woff -------------------------------------------------------------------------------- /src/less/vendor/windows.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/less/vendor/windows.woff2 -------------------------------------------------------------------------------- /src/main/about-panel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/main/about-panel.ts -------------------------------------------------------------------------------- /src/main/fileserver/encoding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/main/fileserver/encoding.ts -------------------------------------------------------------------------------- /src/main/fileserver/fileserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/main/fileserver/fileserver.ts -------------------------------------------------------------------------------- /src/main/fileserver/hide-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/main/fileserver/hide-files.ts -------------------------------------------------------------------------------- /src/main/fileserver/page-directory-listing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/main/fileserver/page-directory-listing.ts -------------------------------------------------------------------------------- /src/main/fileserver/page-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/main/fileserver/page-error.ts -------------------------------------------------------------------------------- /src/main/ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/main/ipc.ts -------------------------------------------------------------------------------- /src/main/logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/main/logging.ts -------------------------------------------------------------------------------- /src/main/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/main/main.ts -------------------------------------------------------------------------------- /src/main/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/main/menu.ts -------------------------------------------------------------------------------- /src/main/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/main/session.ts -------------------------------------------------------------------------------- /src/main/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/main/settings.ts -------------------------------------------------------------------------------- /src/main/squirrel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/main/squirrel.ts -------------------------------------------------------------------------------- /src/main/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/main/update.ts -------------------------------------------------------------------------------- /src/main/windows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/main/windows.ts -------------------------------------------------------------------------------- /src/renderer/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/renderer/app.tsx -------------------------------------------------------------------------------- /src/renderer/card-settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/renderer/card-settings.tsx -------------------------------------------------------------------------------- /src/renderer/card-start.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/renderer/card-start.tsx -------------------------------------------------------------------------------- /src/renderer/emulator-info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/renderer/emulator-info.tsx -------------------------------------------------------------------------------- /src/renderer/emulator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/renderer/emulator.tsx -------------------------------------------------------------------------------- /src/renderer/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/renderer/global.d.ts -------------------------------------------------------------------------------- /src/renderer/lib/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/renderer/lib/LICENSE.md -------------------------------------------------------------------------------- /src/renderer/lib/build/v86.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/renderer/lib/build/v86.wasm -------------------------------------------------------------------------------- /src/renderer/lib/libv86.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/renderer/lib/libv86.js -------------------------------------------------------------------------------- /src/renderer/start-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/renderer/start-menu.tsx -------------------------------------------------------------------------------- /src/renderer/status.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/utils/get-state-path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/renderer/utils/get-state-path.ts -------------------------------------------------------------------------------- /src/renderer/utils/reset-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/renderer/utils/reset-state.ts -------------------------------------------------------------------------------- /src/utils/devmode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/utils/devmode.ts -------------------------------------------------------------------------------- /src/utils/disk-image-size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/src/utils/disk-image-size.ts -------------------------------------------------------------------------------- /static/boot-fresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/static/boot-fresh.png -------------------------------------------------------------------------------- /static/cdrom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/static/cdrom.png -------------------------------------------------------------------------------- /static/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/static/entitlements.plist -------------------------------------------------------------------------------- /static/floppy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/static/floppy.png -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/static/index.html -------------------------------------------------------------------------------- /static/reset-state.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/static/reset-state.png -------------------------------------------------------------------------------- /static/reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/static/reset.png -------------------------------------------------------------------------------- /static/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/static/run.png -------------------------------------------------------------------------------- /static/select-cdrom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/static/select-cdrom.png -------------------------------------------------------------------------------- /static/select-floppy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/static/select-floppy.png -------------------------------------------------------------------------------- /static/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/static/settings.png -------------------------------------------------------------------------------- /static/show-disk-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/static/show-disk-image.png -------------------------------------------------------------------------------- /static/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/static/start.png -------------------------------------------------------------------------------- /static/www/apps.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/static/www/apps.htm -------------------------------------------------------------------------------- /static/www/buttons/macos.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/static/www/buttons/macos.gif -------------------------------------------------------------------------------- /static/www/buttons/madewithelectron.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/static/www/buttons/madewithelectron.gif -------------------------------------------------------------------------------- /static/www/buttons/msie.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/static/www/buttons/msie.gif -------------------------------------------------------------------------------- /static/www/credits.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/static/www/credits.htm -------------------------------------------------------------------------------- /static/www/help.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/static/www/help.htm -------------------------------------------------------------------------------- /static/www/home.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/static/www/home.htm -------------------------------------------------------------------------------- /static/www/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/static/www/images/bg.gif -------------------------------------------------------------------------------- /static/www/images/desktop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/static/www/images/desktop.gif -------------------------------------------------------------------------------- /static/www/images/doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/static/www/images/doc.gif -------------------------------------------------------------------------------- /static/www/images/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/static/www/images/folder.gif -------------------------------------------------------------------------------- /static/www/images/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/static/www/images/help.gif -------------------------------------------------------------------------------- /static/www/images/ie.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/static/www/images/ie.gif -------------------------------------------------------------------------------- /static/www/images/network.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/static/www/images/network.gif -------------------------------------------------------------------------------- /static/www/images/programs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/static/www/images/programs.gif -------------------------------------------------------------------------------- /static/www/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/static/www/index.htm -------------------------------------------------------------------------------- /static/www/navigation.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/static/www/navigation.htm -------------------------------------------------------------------------------- /tools/add-macos-cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/tools/add-macos-cert.sh -------------------------------------------------------------------------------- /tools/check-links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/tools/check-links.js -------------------------------------------------------------------------------- /tools/download-disk.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/tools/download-disk.ps1 -------------------------------------------------------------------------------- /tools/download-disk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/tools/download-disk.sh -------------------------------------------------------------------------------- /tools/generateAssets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/tools/generateAssets.js -------------------------------------------------------------------------------- /tools/parcel-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/tools/parcel-build.js -------------------------------------------------------------------------------- /tools/parcel-watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/tools/parcel-watch.js -------------------------------------------------------------------------------- /tools/resedit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/tools/resedit.js -------------------------------------------------------------------------------- /tools/run-bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/tools/run-bin.js -------------------------------------------------------------------------------- /tools/tsc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/tools/tsc.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixrieseberg/windows95/HEAD/tsconfig.json --------------------------------------------------------------------------------