Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Type Definitions #141

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
trailingComma: 'all',
singleQuote: true,
printWidth: 120,
};
File renamed without changes.
8 changes: 8 additions & 0 deletions convert.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/usr/bin/env zsh
npm install --save-dev typescript @types/node

set -x

for file in ./{src,test,test-integration}/**/*.js; do
cp $file ${file/js/ts}
done
7 changes: 7 additions & 0 deletions docs/Typescript_Migration.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Typescript Migration

To build:

```sh
$ npm run build
```
File renamed without changes.