├── .gitattributes ├── .no-sublime-package ├── ArcticTypescript.py ├── ArcticTypescript.sublime-settings ├── CHANGES.txt ├── Comments.tmPreferences ├── Default.sublime-commands ├── Default.sublime-keymap ├── LICENCE.txt ├── Main.sublime-menu ├── README.md ├── TESTING.md ├── TODO.md ├── bin ├── defaultLibs.d.ts ├── expandglob.js ├── harness.js ├── node_modules │ ├── .bin │ │ └── tsc │ ├── glob-expand │ │ ├── Gruntfile.coffee │ │ ├── build │ │ │ └── code │ │ │ │ └── expand.js │ │ ├── history.md │ │ ├── node_modules │ │ │ ├── glob │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── examples │ │ │ │ │ ├── g.js │ │ │ │ │ └── usr-local.js │ │ │ │ ├── glob.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── graceful-fs │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── graceful-fs.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── open.js │ │ │ │ │ │ │ └── ulimit.js │ │ │ │ │ ├── inherits │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── inherits.js │ │ │ │ │ │ └── package.json │ │ │ │ │ └── minimatch │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── minimatch.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ ├── lru-cache │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ └── lru-cache.js │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ ├── basic.js │ │ │ │ │ │ │ │ ├── foreach.js │ │ │ │ │ │ │ │ └── memory-leak.js │ │ │ │ │ │ └── sigmund │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── bench.js │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ ├── sigmund.js │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── basic.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── basic.js │ │ │ │ │ │ ├── brace-expand.js │ │ │ │ │ │ ├── caching.js │ │ │ │ │ │ ├── defaults.js │ │ │ │ │ │ └── extglob-ending-with-state-char.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── 00-setup.js │ │ │ │ │ ├── bash-comparison.js │ │ │ │ │ ├── bash-results.json │ │ │ │ │ ├── cwd-test.js │ │ │ │ │ ├── mark.js │ │ │ │ │ ├── nocase-nomagic.js │ │ │ │ │ ├── pause-resume.js │ │ │ │ │ ├── root-nomount.js │ │ │ │ │ ├── root.js │ │ │ │ │ └── zz-cleanup.js │ │ │ └── lodash │ │ │ │ ├── README.md │ │ │ │ ├── dist │ │ │ │ ├── lodash.compat.js │ │ │ │ ├── lodash.compat.min.js │ │ │ │ ├── lodash.js │ │ │ │ ├── lodash.legacy.js │ │ │ │ ├── lodash.legacy.min.js │ │ │ │ ├── lodash.min.js │ │ │ │ ├── lodash.mobile.js │ │ │ │ ├── lodash.mobile.min.js │ │ │ │ ├── lodash.underscore.js │ │ │ │ └── lodash.underscore.min.js │ │ │ │ └── package.json │ │ ├── package.json │ │ └── readme.md │ └── typescript │ │ ├── .editorconfig │ │ ├── .npmignore │ │ ├── CONTRIBUTING.md │ │ ├── CopyrightNotice.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── ThirdPartyNoticeText.txt │ │ ├── bin │ │ ├── lib.d.ts │ │ ├── lib.es6.d.ts │ │ ├── lib.webworker.d.ts │ │ ├── tsc │ │ ├── tsc.js │ │ └── typescript.js │ │ └── package.json ├── package.json ├── readline.js ├── refactor.js ├── tss └── tss.js ├── examples ├── amd_modules_with_tests │ ├── Gruntfile.js │ ├── built │ │ └── js │ │ │ └── git_folderkeeper │ ├── package.json │ ├── res │ │ ├── index.html │ │ ├── js │ │ │ └── lib │ │ │ │ ├── chai │ │ │ │ └── chai.js │ │ │ │ ├── mocha │ │ │ │ ├── mocha.css │ │ │ │ └── mocha.js │ │ │ │ ├── requirejs │ │ │ │ └── require.js │ │ │ │ └── sinon │ │ │ │ ├── sinon-chai.js │ │ │ │ └── sinon.js │ │ └── test.html │ ├── src │ │ ├── app.ts │ │ ├── lib │ │ │ ├── chai │ │ │ │ └── chai.d.ts │ │ │ ├── mocha │ │ │ │ └── mocha.d.ts │ │ │ ├── sinon-chai │ │ │ │ └── sinon-chai.d.ts │ │ │ ├── sinon │ │ │ │ └── sinon.d.ts │ │ │ └── tsd.d.ts │ │ ├── testrunner.ts │ │ ├── tests │ │ │ └── utilstest.ts │ │ └── utils │ │ │ └── utils.ts │ └── tsconfig.json ├── basic_browser_project │ ├── built │ │ ├── index.html │ │ ├── mycode.js │ │ └── mycode.js.map │ ├── src │ │ ├── insanity.ts │ │ ├── main.ts │ │ └── main2.ts │ └── tsconfig.json ├── common_js_modules_with_tests │ ├── built │ │ ├── app.js │ │ ├── test │ │ │ └── utilstest.js │ │ └── utils │ │ │ └── utils.js │ ├── package.json │ ├── src │ │ ├── app.ts │ │ ├── lib │ │ │ ├── chai │ │ │ │ └── chai.d.ts │ │ │ ├── mocha │ │ │ │ └── mocha.d.ts │ │ │ ├── sinon-chai │ │ │ │ └── sinon-chai.d.ts │ │ │ ├── sinon │ │ │ │ └── sinon.d.ts │ │ │ └── tsd.d.ts │ │ ├── test │ │ │ └── utilstest.ts │ │ └── utils │ │ │ └── utils.ts │ └── tsconfig.json ├── most_simple │ ├── program.js │ ├── program.ts │ ├── tsconfig.json │ ├── utils.js │ └── utils.ts ├── single_out_file │ ├── main.ts │ ├── out.js │ ├── out.js.map │ ├── second.ts │ └── tsconfig.json ├── using_amd_modules │ ├── built │ │ └── js │ │ │ ├── app.js │ │ │ ├── app.js.map │ │ │ └── utils │ │ │ ├── utils.js │ │ │ └── utils.js.map │ ├── src │ │ ├── app.ts │ │ └── utils │ │ │ └── utils.ts │ └── tsconfig.json └── using_commonjs_modules │ ├── built │ ├── app.js │ └── utils │ │ └── utils.js │ ├── package.json │ ├── src │ ├── app.ts │ └── utils │ │ └── utils.ts │ └── tsconfig.json ├── icons ├── bright-illegal.png ├── bright-violation.png ├── bright-warning.png ├── simple-illegal.png ├── simple-violation.png └── simple-warning.png ├── lib ├── ArcticTestCase.py ├── Commands.py ├── Listener.py ├── __init__.py ├── commands │ ├── Compiler.py │ ├── Refactor.py │ └── __init__.py ├── display │ ├── Layout.py │ ├── Message.py │ ├── Panel.py │ ├── T3SViews.py │ ├── __init__.py │ └── views │ │ ├── Base.py │ │ ├── Compile.py │ │ ├── Error.py │ │ ├── Outline.py │ │ └── __init__.py ├── server │ ├── AsyncCommand.py │ ├── Processes.py │ ├── TsserverWrapper.py │ ├── TypescriptToolsWrapper.py │ └── typescripttoolsparser.py ├── system │ ├── Completion.py │ ├── Errors.py │ ├── ErrorsHighlighter.py │ ├── Project.py │ ├── ProjectWizzard.py │ ├── __init__.py │ ├── busted │ │ ├── Files.py │ │ ├── Liste.py │ │ └── Settings.py │ └── globals.py ├── test │ ├── __init__.py │ ├── test_foo.py │ ├── test_project.py │ └── test_utils.py ├── tsconfiglint │ ├── TsconfigLinter.py │ ├── TsconfigListener.py │ └── tsconfigglobexpand.py └── utils │ ├── CancelCommand.py │ ├── __init__.py │ ├── debounce.py │ ├── debug.py │ ├── disabling.py │ ├── fileutils.py │ ├── options.py │ ├── osutils.py │ ├── pathutils.py │ ├── uiutils.py │ ├── utils.py │ └── viewutils.py ├── messages.json ├── messages ├── 0.4.0.txt ├── 0.5.0.txt └── 0.6.0.txt ├── screenshots ├── 01_code_completion.png ├── 01_code_completion.xcf ├── 02_errorlist.png ├── 03_quickinfo.png ├── 04_jumpto_declaration.png ├── 05_errorjump.png ├── 06_snippet_for1.png ├── 07_snippet_for2.png ├── 08_build.png ├── 09_view_build_file.png ├── 10_tsconfig_validation.png ├── 11_commands.png ├── animated.gif └── orig │ ├── 01_code_completion.png │ ├── 02_errorlist.png │ ├── 03_quickinfo.png │ ├── 04_jumpto_declaration.png │ ├── 05_errorjump.png │ ├── 06_snippet_for1.png │ ├── 07_snippet_for2.png │ ├── 08_build.png │ ├── 09_view_build_file.png │ ├── 10_tsconfig_validation.png │ └── 11_commands.png ├── snippets ├── Constructor.sublime-snippet ├── class-{-}.sublime-snippet ├── do-while(-).sublime-snippet ├── for-()-{[]}.sublime-snippet ├── for-()-{}-(faster).sublime-snippet ├── for-()-{}.sublime-snippet ├── for-(in)-{}.sublime-snippet ├── function-(fun).sublime-snippet ├── get-()-{}.sublime-snippet ├── if-___-else.sublime-snippet ├── if.sublime-snippet ├── import-require.sublime-snippet ├── log.sublime-snippet ├── method-(fun).sublime-snippet ├── property.sublime-snippet ├── reference.sublime-snippet ├── reference_via_slash.sublime-snippet ├── return-FALSE.sublime-snippet ├── return-TRUE.sublime-snippet ├── return.sublime-snippet ├── set-()-{}.sublime-snippet ├── setTimeout.sublime-snippet ├── snippetlist.sublime-snippet ├── switch(-).sublime-snippet └── throw.sublime-snippet ├── tests ├── DTSTest │ ├── backbone.d.ts │ ├── backbone.ts │ ├── jquery.d.ts │ ├── main.ts │ └── underscore.d.ts ├── Defaultproject │ └── main.ts ├── Spaces in dir │ ├── lib │ │ └── mylib.ts │ ├── main2.ts │ ├── out.js │ ├── out.js.map │ └── tsconfig.json ├── TDDTesting │ ├── card.ts │ ├── main.ts │ └── tsconfig.json ├── WizzardTest │ ├── lib │ │ └── mylib.ts │ └── main2.ts └── WrongReferencedRoot │ ├── lib │ ├── anotherFile.ts │ ├── filewithoutexports.ts │ ├── mylib.ts │ └── specialLibFkt.ts │ └── main.ts ├── theme ├── Typescript.YAML-tmLanguage └── Typescript.tmLanguage └── unittesting.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/.gitattributes -------------------------------------------------------------------------------- /.no-sublime-package: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ArcticTypescript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/ArcticTypescript.py -------------------------------------------------------------------------------- /ArcticTypescript.sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/ArcticTypescript.sublime-settings -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /Comments.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/Comments.tmPreferences -------------------------------------------------------------------------------- /Default.sublime-commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/Default.sublime-commands -------------------------------------------------------------------------------- /Default.sublime-keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/Default.sublime-keymap -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /Main.sublime-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/Main.sublime-menu -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/README.md -------------------------------------------------------------------------------- /TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/TESTING.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/TODO.md -------------------------------------------------------------------------------- /bin/defaultLibs.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /bin/expandglob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/expandglob.js -------------------------------------------------------------------------------- /bin/harness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/harness.js -------------------------------------------------------------------------------- /bin/node_modules/.bin/tsc: -------------------------------------------------------------------------------- 1 | ../typescript/bin/tsc -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/Gruntfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/Gruntfile.coffee -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/build/code/expand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/build/code/expand.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/history.md -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/.npmignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | test/a/ 3 | -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/.travis.yml -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/LICENSE -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/README.md -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/examples/g.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/examples/g.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/examples/usr-local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/examples/usr-local.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/glob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/glob.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/graceful-fs/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/graceful-fs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/node_modules/graceful-fs/LICENSE -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/graceful-fs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/node_modules/graceful-fs/README.md -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/graceful-fs/graceful-fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/node_modules/graceful-fs/graceful-fs.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/graceful-fs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/node_modules/graceful-fs/package.json -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/graceful-fs/test/open.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/node_modules/graceful-fs/test/open.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/graceful-fs/test/ulimit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/node_modules/graceful-fs/test/ulimit.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/inherits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/node_modules/inherits/README.md -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/node_modules/inherits/inherits.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/inherits/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/node_modules/inherits/package.json -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/LICENSE -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/README.md -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/minimatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/minimatch.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/CONTRIBUTORS -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/LICENSE -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/README.md -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/lib/lru-cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/lib/lru-cache.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/package.json -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/test/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/test/basic.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/test/foreach.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/test/foreach.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/test/memory-leak.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/test/memory-leak.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/node_modules/sigmund/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/node_modules/sigmund/LICENSE -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/node_modules/sigmund/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/node_modules/sigmund/README.md -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/node_modules/sigmund/bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/node_modules/sigmund/bench.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/node_modules/sigmund/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/node_modules/sigmund/package.json -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/node_modules/sigmund/sigmund.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/node_modules/sigmund/sigmund.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/node_modules/sigmund/test/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/node_modules/sigmund/test/basic.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/package.json -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/test/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/test/basic.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/test/brace-expand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/test/brace-expand.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/test/caching.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/test/caching.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/test/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/test/defaults.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/test/extglob-ending-with-state-char.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/node_modules/minimatch/test/extglob-ending-with-state-char.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/package.json -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/test/00-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/test/00-setup.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/test/bash-comparison.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/test/bash-comparison.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/test/bash-results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/test/bash-results.json -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/test/cwd-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/test/cwd-test.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/test/mark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/test/mark.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/test/nocase-nomagic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/test/nocase-nomagic.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/test/pause-resume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/test/pause-resume.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/test/root-nomount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/test/root-nomount.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/test/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/test/root.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/glob/test/zz-cleanup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/glob/test/zz-cleanup.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/lodash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/lodash/README.md -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/lodash/dist/lodash.compat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/lodash/dist/lodash.compat.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/lodash/dist/lodash.compat.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/lodash/dist/lodash.compat.min.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/lodash/dist/lodash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/lodash/dist/lodash.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/lodash/dist/lodash.legacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/lodash/dist/lodash.legacy.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/lodash/dist/lodash.legacy.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/lodash/dist/lodash.legacy.min.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/lodash/dist/lodash.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/lodash/dist/lodash.min.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/lodash/dist/lodash.mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/lodash/dist/lodash.mobile.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/lodash/dist/lodash.mobile.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/lodash/dist/lodash.mobile.min.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/lodash/dist/lodash.underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/lodash/dist/lodash.underscore.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/lodash/dist/lodash.underscore.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/lodash/dist/lodash.underscore.min.js -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/node_modules/lodash/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/node_modules/lodash/package.json -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/package.json -------------------------------------------------------------------------------- /bin/node_modules/glob-expand/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/glob-expand/readme.md -------------------------------------------------------------------------------- /bin/node_modules/typescript/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/typescript/.editorconfig -------------------------------------------------------------------------------- /bin/node_modules/typescript/.npmignore: -------------------------------------------------------------------------------- 1 | built 2 | doc 3 | scripts 4 | src 5 | tests 6 | Jakefile 7 | .travis.yml -------------------------------------------------------------------------------- /bin/node_modules/typescript/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/typescript/CONTRIBUTING.md -------------------------------------------------------------------------------- /bin/node_modules/typescript/CopyrightNotice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/typescript/CopyrightNotice.txt -------------------------------------------------------------------------------- /bin/node_modules/typescript/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/typescript/LICENSE.txt -------------------------------------------------------------------------------- /bin/node_modules/typescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/typescript/README.md -------------------------------------------------------------------------------- /bin/node_modules/typescript/ThirdPartyNoticeText.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/typescript/ThirdPartyNoticeText.txt -------------------------------------------------------------------------------- /bin/node_modules/typescript/bin/lib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/typescript/bin/lib.d.ts -------------------------------------------------------------------------------- /bin/node_modules/typescript/bin/lib.es6.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/typescript/bin/lib.es6.d.ts -------------------------------------------------------------------------------- /bin/node_modules/typescript/bin/lib.webworker.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/typescript/bin/lib.webworker.d.ts -------------------------------------------------------------------------------- /bin/node_modules/typescript/bin/tsc: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('./tsc.js') 3 | -------------------------------------------------------------------------------- /bin/node_modules/typescript/bin/tsc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/typescript/bin/tsc.js -------------------------------------------------------------------------------- /bin/node_modules/typescript/bin/typescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/typescript/bin/typescript.js -------------------------------------------------------------------------------- /bin/node_modules/typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/node_modules/typescript/package.json -------------------------------------------------------------------------------- /bin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/package.json -------------------------------------------------------------------------------- /bin/readline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/readline.js -------------------------------------------------------------------------------- /bin/refactor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/refactor.js -------------------------------------------------------------------------------- /bin/tss: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('./tss.js') 3 | -------------------------------------------------------------------------------- /bin/tss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/bin/tss.js -------------------------------------------------------------------------------- /examples/amd_modules_with_tests/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/amd_modules_with_tests/Gruntfile.js -------------------------------------------------------------------------------- /examples/amd_modules_with_tests/built/js/git_folderkeeper: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/amd_modules_with_tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/amd_modules_with_tests/package.json -------------------------------------------------------------------------------- /examples/amd_modules_with_tests/res/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/amd_modules_with_tests/res/index.html -------------------------------------------------------------------------------- /examples/amd_modules_with_tests/res/js/lib/chai/chai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/amd_modules_with_tests/res/js/lib/chai/chai.js -------------------------------------------------------------------------------- /examples/amd_modules_with_tests/res/js/lib/mocha/mocha.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/amd_modules_with_tests/res/js/lib/mocha/mocha.css -------------------------------------------------------------------------------- /examples/amd_modules_with_tests/res/js/lib/mocha/mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/amd_modules_with_tests/res/js/lib/mocha/mocha.js -------------------------------------------------------------------------------- /examples/amd_modules_with_tests/res/js/lib/requirejs/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/amd_modules_with_tests/res/js/lib/requirejs/require.js -------------------------------------------------------------------------------- /examples/amd_modules_with_tests/res/js/lib/sinon/sinon-chai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/amd_modules_with_tests/res/js/lib/sinon/sinon-chai.js -------------------------------------------------------------------------------- /examples/amd_modules_with_tests/res/js/lib/sinon/sinon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/amd_modules_with_tests/res/js/lib/sinon/sinon.js -------------------------------------------------------------------------------- /examples/amd_modules_with_tests/res/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/amd_modules_with_tests/res/test.html -------------------------------------------------------------------------------- /examples/amd_modules_with_tests/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/amd_modules_with_tests/src/app.ts -------------------------------------------------------------------------------- /examples/amd_modules_with_tests/src/lib/chai/chai.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/amd_modules_with_tests/src/lib/chai/chai.d.ts -------------------------------------------------------------------------------- /examples/amd_modules_with_tests/src/lib/mocha/mocha.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/amd_modules_with_tests/src/lib/mocha/mocha.d.ts -------------------------------------------------------------------------------- /examples/amd_modules_with_tests/src/lib/sinon-chai/sinon-chai.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/amd_modules_with_tests/src/lib/sinon-chai/sinon-chai.d.ts -------------------------------------------------------------------------------- /examples/amd_modules_with_tests/src/lib/sinon/sinon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/amd_modules_with_tests/src/lib/sinon/sinon.d.ts -------------------------------------------------------------------------------- /examples/amd_modules_with_tests/src/lib/tsd.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/amd_modules_with_tests/src/lib/tsd.d.ts -------------------------------------------------------------------------------- /examples/amd_modules_with_tests/src/testrunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/amd_modules_with_tests/src/testrunner.ts -------------------------------------------------------------------------------- /examples/amd_modules_with_tests/src/tests/utilstest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/amd_modules_with_tests/src/tests/utilstest.ts -------------------------------------------------------------------------------- /examples/amd_modules_with_tests/src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/amd_modules_with_tests/src/utils/utils.ts -------------------------------------------------------------------------------- /examples/amd_modules_with_tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/amd_modules_with_tests/tsconfig.json -------------------------------------------------------------------------------- /examples/basic_browser_project/built/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/basic_browser_project/built/index.html -------------------------------------------------------------------------------- /examples/basic_browser_project/built/mycode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/basic_browser_project/built/mycode.js -------------------------------------------------------------------------------- /examples/basic_browser_project/built/mycode.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/basic_browser_project/built/mycode.js.map -------------------------------------------------------------------------------- /examples/basic_browser_project/src/insanity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/basic_browser_project/src/insanity.ts -------------------------------------------------------------------------------- /examples/basic_browser_project/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/basic_browser_project/src/main.ts -------------------------------------------------------------------------------- /examples/basic_browser_project/src/main2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/basic_browser_project/src/main2.ts -------------------------------------------------------------------------------- /examples/basic_browser_project/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/basic_browser_project/tsconfig.json -------------------------------------------------------------------------------- /examples/common_js_modules_with_tests/built/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/common_js_modules_with_tests/built/app.js -------------------------------------------------------------------------------- /examples/common_js_modules_with_tests/built/test/utilstest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/common_js_modules_with_tests/built/test/utilstest.js -------------------------------------------------------------------------------- /examples/common_js_modules_with_tests/built/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/common_js_modules_with_tests/built/utils/utils.js -------------------------------------------------------------------------------- /examples/common_js_modules_with_tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/common_js_modules_with_tests/package.json -------------------------------------------------------------------------------- /examples/common_js_modules_with_tests/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/common_js_modules_with_tests/src/app.ts -------------------------------------------------------------------------------- /examples/common_js_modules_with_tests/src/lib/chai/chai.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/common_js_modules_with_tests/src/lib/chai/chai.d.ts -------------------------------------------------------------------------------- /examples/common_js_modules_with_tests/src/lib/mocha/mocha.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/common_js_modules_with_tests/src/lib/mocha/mocha.d.ts -------------------------------------------------------------------------------- /examples/common_js_modules_with_tests/src/lib/sinon-chai/sinon-chai.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/common_js_modules_with_tests/src/lib/sinon-chai/sinon-chai.d.ts -------------------------------------------------------------------------------- /examples/common_js_modules_with_tests/src/lib/sinon/sinon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/common_js_modules_with_tests/src/lib/sinon/sinon.d.ts -------------------------------------------------------------------------------- /examples/common_js_modules_with_tests/src/lib/tsd.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/common_js_modules_with_tests/src/lib/tsd.d.ts -------------------------------------------------------------------------------- /examples/common_js_modules_with_tests/src/test/utilstest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/common_js_modules_with_tests/src/test/utilstest.ts -------------------------------------------------------------------------------- /examples/common_js_modules_with_tests/src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/common_js_modules_with_tests/src/utils/utils.ts -------------------------------------------------------------------------------- /examples/common_js_modules_with_tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/common_js_modules_with_tests/tsconfig.json -------------------------------------------------------------------------------- /examples/most_simple/program.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/most_simple/program.js -------------------------------------------------------------------------------- /examples/most_simple/program.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/most_simple/program.ts -------------------------------------------------------------------------------- /examples/most_simple/tsconfig.json: -------------------------------------------------------------------------------- 1 | { } -------------------------------------------------------------------------------- /examples/most_simple/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/most_simple/utils.js -------------------------------------------------------------------------------- /examples/most_simple/utils.ts: -------------------------------------------------------------------------------- 1 | 2 | module Utils { 3 | export var g = 9.81; 4 | } -------------------------------------------------------------------------------- /examples/single_out_file/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/single_out_file/main.ts -------------------------------------------------------------------------------- /examples/single_out_file/out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/single_out_file/out.js -------------------------------------------------------------------------------- /examples/single_out_file/out.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/single_out_file/out.js.map -------------------------------------------------------------------------------- /examples/single_out_file/second.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/single_out_file/second.ts -------------------------------------------------------------------------------- /examples/single_out_file/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/single_out_file/tsconfig.json -------------------------------------------------------------------------------- /examples/using_amd_modules/built/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/using_amd_modules/built/js/app.js -------------------------------------------------------------------------------- /examples/using_amd_modules/built/js/app.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/using_amd_modules/built/js/app.js.map -------------------------------------------------------------------------------- /examples/using_amd_modules/built/js/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/using_amd_modules/built/js/utils/utils.js -------------------------------------------------------------------------------- /examples/using_amd_modules/built/js/utils/utils.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/using_amd_modules/built/js/utils/utils.js.map -------------------------------------------------------------------------------- /examples/using_amd_modules/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/using_amd_modules/src/app.ts -------------------------------------------------------------------------------- /examples/using_amd_modules/src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/using_amd_modules/src/utils/utils.ts -------------------------------------------------------------------------------- /examples/using_amd_modules/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/using_amd_modules/tsconfig.json -------------------------------------------------------------------------------- /examples/using_commonjs_modules/built/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/using_commonjs_modules/built/app.js -------------------------------------------------------------------------------- /examples/using_commonjs_modules/built/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/using_commonjs_modules/built/utils/utils.js -------------------------------------------------------------------------------- /examples/using_commonjs_modules/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/using_commonjs_modules/package.json -------------------------------------------------------------------------------- /examples/using_commonjs_modules/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/using_commonjs_modules/src/app.ts -------------------------------------------------------------------------------- /examples/using_commonjs_modules/src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/using_commonjs_modules/src/utils/utils.ts -------------------------------------------------------------------------------- /examples/using_commonjs_modules/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/examples/using_commonjs_modules/tsconfig.json -------------------------------------------------------------------------------- /icons/bright-illegal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/icons/bright-illegal.png -------------------------------------------------------------------------------- /icons/bright-violation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/icons/bright-violation.png -------------------------------------------------------------------------------- /icons/bright-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/icons/bright-warning.png -------------------------------------------------------------------------------- /icons/simple-illegal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/icons/simple-illegal.png -------------------------------------------------------------------------------- /icons/simple-violation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/icons/simple-violation.png -------------------------------------------------------------------------------- /icons/simple-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/icons/simple-warning.png -------------------------------------------------------------------------------- /lib/ArcticTestCase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/ArcticTestCase.py -------------------------------------------------------------------------------- /lib/Commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/Commands.py -------------------------------------------------------------------------------- /lib/Listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/Listener.py -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/commands/Compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/commands/Compiler.py -------------------------------------------------------------------------------- /lib/commands/Refactor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/commands/Refactor.py -------------------------------------------------------------------------------- /lib/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/display/Layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/display/Layout.py -------------------------------------------------------------------------------- /lib/display/Message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/display/Message.py -------------------------------------------------------------------------------- /lib/display/Panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/display/Panel.py -------------------------------------------------------------------------------- /lib/display/T3SViews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/display/T3SViews.py -------------------------------------------------------------------------------- /lib/display/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/display/views/Base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/display/views/Base.py -------------------------------------------------------------------------------- /lib/display/views/Compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/display/views/Compile.py -------------------------------------------------------------------------------- /lib/display/views/Error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/display/views/Error.py -------------------------------------------------------------------------------- /lib/display/views/Outline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/display/views/Outline.py -------------------------------------------------------------------------------- /lib/display/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/server/AsyncCommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/server/AsyncCommand.py -------------------------------------------------------------------------------- /lib/server/Processes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/server/Processes.py -------------------------------------------------------------------------------- /lib/server/TsserverWrapper.py: -------------------------------------------------------------------------------- 1 | # coding=utf8 2 | 3 | -------------------------------------------------------------------------------- /lib/server/TypescriptToolsWrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/server/TypescriptToolsWrapper.py -------------------------------------------------------------------------------- /lib/server/typescripttoolsparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/server/typescripttoolsparser.py -------------------------------------------------------------------------------- /lib/system/Completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/system/Completion.py -------------------------------------------------------------------------------- /lib/system/Errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/system/Errors.py -------------------------------------------------------------------------------- /lib/system/ErrorsHighlighter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/system/ErrorsHighlighter.py -------------------------------------------------------------------------------- /lib/system/Project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/system/Project.py -------------------------------------------------------------------------------- /lib/system/ProjectWizzard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/system/ProjectWizzard.py -------------------------------------------------------------------------------- /lib/system/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/system/busted/Files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/system/busted/Files.py -------------------------------------------------------------------------------- /lib/system/busted/Liste.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/system/busted/Liste.py -------------------------------------------------------------------------------- /lib/system/busted/Settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/system/busted/Settings.py -------------------------------------------------------------------------------- /lib/system/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/system/globals.py -------------------------------------------------------------------------------- /lib/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/test/test_foo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/test/test_foo.py -------------------------------------------------------------------------------- /lib/test/test_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/test/test_project.py -------------------------------------------------------------------------------- /lib/test/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/test/test_utils.py -------------------------------------------------------------------------------- /lib/tsconfiglint/TsconfigLinter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/tsconfiglint/TsconfigLinter.py -------------------------------------------------------------------------------- /lib/tsconfiglint/TsconfigListener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/tsconfiglint/TsconfigListener.py -------------------------------------------------------------------------------- /lib/tsconfiglint/tsconfigglobexpand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/tsconfiglint/tsconfigglobexpand.py -------------------------------------------------------------------------------- /lib/utils/CancelCommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/utils/CancelCommand.py -------------------------------------------------------------------------------- /lib/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/utils/__init__.py -------------------------------------------------------------------------------- /lib/utils/debounce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/utils/debounce.py -------------------------------------------------------------------------------- /lib/utils/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/utils/debug.py -------------------------------------------------------------------------------- /lib/utils/disabling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/utils/disabling.py -------------------------------------------------------------------------------- /lib/utils/fileutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/utils/fileutils.py -------------------------------------------------------------------------------- /lib/utils/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/utils/options.py -------------------------------------------------------------------------------- /lib/utils/osutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/utils/osutils.py -------------------------------------------------------------------------------- /lib/utils/pathutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/utils/pathutils.py -------------------------------------------------------------------------------- /lib/utils/uiutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/utils/uiutils.py -------------------------------------------------------------------------------- /lib/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/utils/utils.py -------------------------------------------------------------------------------- /lib/utils/viewutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/lib/utils/viewutils.py -------------------------------------------------------------------------------- /messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/messages.json -------------------------------------------------------------------------------- /messages/0.4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/messages/0.4.0.txt -------------------------------------------------------------------------------- /messages/0.5.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/messages/0.5.0.txt -------------------------------------------------------------------------------- /messages/0.6.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/messages/0.6.0.txt -------------------------------------------------------------------------------- /screenshots/01_code_completion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/screenshots/01_code_completion.png -------------------------------------------------------------------------------- /screenshots/01_code_completion.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/screenshots/01_code_completion.xcf -------------------------------------------------------------------------------- /screenshots/02_errorlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/screenshots/02_errorlist.png -------------------------------------------------------------------------------- /screenshots/03_quickinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/screenshots/03_quickinfo.png -------------------------------------------------------------------------------- /screenshots/04_jumpto_declaration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/screenshots/04_jumpto_declaration.png -------------------------------------------------------------------------------- /screenshots/05_errorjump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/screenshots/05_errorjump.png -------------------------------------------------------------------------------- /screenshots/06_snippet_for1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/screenshots/06_snippet_for1.png -------------------------------------------------------------------------------- /screenshots/07_snippet_for2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/screenshots/07_snippet_for2.png -------------------------------------------------------------------------------- /screenshots/08_build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/screenshots/08_build.png -------------------------------------------------------------------------------- /screenshots/09_view_build_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/screenshots/09_view_build_file.png -------------------------------------------------------------------------------- /screenshots/10_tsconfig_validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/screenshots/10_tsconfig_validation.png -------------------------------------------------------------------------------- /screenshots/11_commands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/screenshots/11_commands.png -------------------------------------------------------------------------------- /screenshots/animated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/screenshots/animated.gif -------------------------------------------------------------------------------- /screenshots/orig/01_code_completion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/screenshots/orig/01_code_completion.png -------------------------------------------------------------------------------- /screenshots/orig/02_errorlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/screenshots/orig/02_errorlist.png -------------------------------------------------------------------------------- /screenshots/orig/03_quickinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/screenshots/orig/03_quickinfo.png -------------------------------------------------------------------------------- /screenshots/orig/04_jumpto_declaration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/screenshots/orig/04_jumpto_declaration.png -------------------------------------------------------------------------------- /screenshots/orig/05_errorjump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/screenshots/orig/05_errorjump.png -------------------------------------------------------------------------------- /screenshots/orig/06_snippet_for1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/screenshots/orig/06_snippet_for1.png -------------------------------------------------------------------------------- /screenshots/orig/07_snippet_for2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/screenshots/orig/07_snippet_for2.png -------------------------------------------------------------------------------- /screenshots/orig/08_build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/screenshots/orig/08_build.png -------------------------------------------------------------------------------- /screenshots/orig/09_view_build_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/screenshots/orig/09_view_build_file.png -------------------------------------------------------------------------------- /screenshots/orig/10_tsconfig_validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/screenshots/orig/10_tsconfig_validation.png -------------------------------------------------------------------------------- /screenshots/orig/11_commands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/screenshots/orig/11_commands.png -------------------------------------------------------------------------------- /snippets/Constructor.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/snippets/Constructor.sublime-snippet -------------------------------------------------------------------------------- /snippets/class-{-}.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/snippets/class-{-}.sublime-snippet -------------------------------------------------------------------------------- /snippets/do-while(-).sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/snippets/do-while(-).sublime-snippet -------------------------------------------------------------------------------- /snippets/for-()-{[]}.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/snippets/for-()-{[]}.sublime-snippet -------------------------------------------------------------------------------- /snippets/for-()-{}-(faster).sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/snippets/for-()-{}-(faster).sublime-snippet -------------------------------------------------------------------------------- /snippets/for-()-{}.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/snippets/for-()-{}.sublime-snippet -------------------------------------------------------------------------------- /snippets/for-(in)-{}.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/snippets/for-(in)-{}.sublime-snippet -------------------------------------------------------------------------------- /snippets/function-(fun).sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/snippets/function-(fun).sublime-snippet -------------------------------------------------------------------------------- /snippets/get-()-{}.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/snippets/get-()-{}.sublime-snippet -------------------------------------------------------------------------------- /snippets/if-___-else.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/snippets/if-___-else.sublime-snippet -------------------------------------------------------------------------------- /snippets/if.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/snippets/if.sublime-snippet -------------------------------------------------------------------------------- /snippets/import-require.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/snippets/import-require.sublime-snippet -------------------------------------------------------------------------------- /snippets/log.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/snippets/log.sublime-snippet -------------------------------------------------------------------------------- /snippets/method-(fun).sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/snippets/method-(fun).sublime-snippet -------------------------------------------------------------------------------- /snippets/property.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/snippets/property.sublime-snippet -------------------------------------------------------------------------------- /snippets/reference.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/snippets/reference.sublime-snippet -------------------------------------------------------------------------------- /snippets/reference_via_slash.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/snippets/reference_via_slash.sublime-snippet -------------------------------------------------------------------------------- /snippets/return-FALSE.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/snippets/return-FALSE.sublime-snippet -------------------------------------------------------------------------------- /snippets/return-TRUE.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/snippets/return-TRUE.sublime-snippet -------------------------------------------------------------------------------- /snippets/return.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/snippets/return.sublime-snippet -------------------------------------------------------------------------------- /snippets/set-()-{}.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/snippets/set-()-{}.sublime-snippet -------------------------------------------------------------------------------- /snippets/setTimeout.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/snippets/setTimeout.sublime-snippet -------------------------------------------------------------------------------- /snippets/snippetlist.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/snippets/snippetlist.sublime-snippet -------------------------------------------------------------------------------- /snippets/switch(-).sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/snippets/switch(-).sublime-snippet -------------------------------------------------------------------------------- /snippets/throw.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/snippets/throw.sublime-snippet -------------------------------------------------------------------------------- /tests/DTSTest/backbone.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/tests/DTSTest/backbone.d.ts -------------------------------------------------------------------------------- /tests/DTSTest/backbone.ts: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/DTSTest/jquery.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/tests/DTSTest/jquery.d.ts -------------------------------------------------------------------------------- /tests/DTSTest/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/tests/DTSTest/main.ts -------------------------------------------------------------------------------- /tests/DTSTest/underscore.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/tests/DTSTest/underscore.d.ts -------------------------------------------------------------------------------- /tests/Defaultproject/main.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Spaces in dir/lib/mylib.ts: -------------------------------------------------------------------------------- 1 | 2 | module LIB { 3 | export function lol() { 4 | return 1; 5 | } 6 | } -------------------------------------------------------------------------------- /tests/Spaces in dir/main2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/tests/Spaces in dir/main2.ts -------------------------------------------------------------------------------- /tests/Spaces in dir/out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/tests/Spaces in dir/out.js -------------------------------------------------------------------------------- /tests/Spaces in dir/out.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/tests/Spaces in dir/out.js.map -------------------------------------------------------------------------------- /tests/Spaces in dir/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/tests/Spaces in dir/tsconfig.json -------------------------------------------------------------------------------- /tests/TDDTesting/card.ts: -------------------------------------------------------------------------------- 1 | 2 | var card = "qe"; -------------------------------------------------------------------------------- /tests/TDDTesting/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/tests/TDDTesting/main.ts -------------------------------------------------------------------------------- /tests/TDDTesting/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/tests/TDDTesting/tsconfig.json -------------------------------------------------------------------------------- /tests/WizzardTest/lib/mylib.ts: -------------------------------------------------------------------------------- 1 | 2 | module LIB { 3 | export function lol() { 4 | return 1; 5 | } 6 | } -------------------------------------------------------------------------------- /tests/WizzardTest/main2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/tests/WizzardTest/main2.ts -------------------------------------------------------------------------------- /tests/WrongReferencedRoot/lib/anotherFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/tests/WrongReferencedRoot/lib/anotherFile.ts -------------------------------------------------------------------------------- /tests/WrongReferencedRoot/lib/filewithoutexports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/tests/WrongReferencedRoot/lib/filewithoutexports.ts -------------------------------------------------------------------------------- /tests/WrongReferencedRoot/lib/mylib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/tests/WrongReferencedRoot/lib/mylib.ts -------------------------------------------------------------------------------- /tests/WrongReferencedRoot/lib/specialLibFkt.ts: -------------------------------------------------------------------------------- 1 | 2 | export function specialLibFkt() { 3 | 4 | 5 | } -------------------------------------------------------------------------------- /tests/WrongReferencedRoot/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/tests/WrongReferencedRoot/main.ts -------------------------------------------------------------------------------- /theme/Typescript.YAML-tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/theme/Typescript.YAML-tmLanguage -------------------------------------------------------------------------------- /theme/Typescript.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/theme/Typescript.tmLanguage -------------------------------------------------------------------------------- /unittesting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phaiax/ArcticTypescript/HEAD/unittesting.json --------------------------------------------------------------------------------