Skip to content

Commit 2aa5745

Browse files
authored
Merge pull request #255 from gregjacobs/convert-to-typescript-v3
Convert to TypeScript
2 parents 56fe4a6 + cde1e87 commit 2aa5745

File tree

186 files changed

+21283
-29494
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

186 files changed

+21283
-29494
lines changed

.babelrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

.gitignore

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,15 @@
22
.idea
33
.project
44
.settings
5-
web.config
6-
.grunt/
7-
_SpecRunner.html
5+
.tmp
86
node_modules/
97
npm-debug.log
108
yarn-error.log
119

12-
# Note: dist is not ignored for bower
13-
#/dist
10+
# Temporary build artifacts
11+
/docs/examples/live-example/build
12+
13+
# Note: /dist/Autolinker.js and /dist/Autolinker.min.js are not gitignored to
14+
# allow for Bower
15+
/dist/commonjs
16+
/dist/es2015

.jshintrc

Lines changed: 0 additions & 13 deletions
This file was deleted.

.travis.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
language: node_js
22
node_js:
3+
- "lts/*" # latest long-term-support version of node.js
34
- "9.0"
4-
- "8.9"
5-
- "7.10.1"
6-
- "6.11.5"
7-
before_script:
8-
- npm install grunt-cli -g
5+
- "8.9"

.vscode/settings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"editor.insertSpaces": false,
3+
"editor.rulers": [ 80 ]
4+
}

README.md

Lines changed: 247 additions & 57 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)