├── README.md ├── assets └── icon.png ├── config.json ├── examples ├── Functions.ts ├── Generic Classes.ts ├── Generic Functions.ts ├── Hello World.ts ├── Mixins.ts ├── Objects and Arrays.ts └── Typing Functions.ts ├── main.js ├── package.json ├── scripts ├── app.js ├── constants.js └── result.js ├── strings ├── en.strings └── zh-Hans.strings └── transpiler.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyanzhong/jsbox-ts-playground/HEAD/README.md -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyanzhong/jsbox-ts-playground/HEAD/assets/icon.png -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyanzhong/jsbox-ts-playground/HEAD/config.json -------------------------------------------------------------------------------- /examples/Functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyanzhong/jsbox-ts-playground/HEAD/examples/Functions.ts -------------------------------------------------------------------------------- /examples/Generic Classes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyanzhong/jsbox-ts-playground/HEAD/examples/Generic Classes.ts -------------------------------------------------------------------------------- /examples/Generic Functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyanzhong/jsbox-ts-playground/HEAD/examples/Generic Functions.ts -------------------------------------------------------------------------------- /examples/Hello World.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyanzhong/jsbox-ts-playground/HEAD/examples/Hello World.ts -------------------------------------------------------------------------------- /examples/Mixins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyanzhong/jsbox-ts-playground/HEAD/examples/Mixins.ts -------------------------------------------------------------------------------- /examples/Objects and Arrays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyanzhong/jsbox-ts-playground/HEAD/examples/Objects and Arrays.ts -------------------------------------------------------------------------------- /examples/Typing Functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyanzhong/jsbox-ts-playground/HEAD/examples/Typing Functions.ts -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyanzhong/jsbox-ts-playground/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyanzhong/jsbox-ts-playground/HEAD/package.json -------------------------------------------------------------------------------- /scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyanzhong/jsbox-ts-playground/HEAD/scripts/app.js -------------------------------------------------------------------------------- /scripts/constants.js: -------------------------------------------------------------------------------- 1 | exports.editorFont = $font("Menlo", 13); -------------------------------------------------------------------------------- /scripts/result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyanzhong/jsbox-ts-playground/HEAD/scripts/result.js -------------------------------------------------------------------------------- /strings/en.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /strings/zh-Hans.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /transpiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyanzhong/jsbox-ts-playground/HEAD/transpiler.js --------------------------------------------------------------------------------