-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds typescript typings support (#8)
* Adds typings for utils * Adds a few core module and task typings * Fucking hell typescript added to the project * Adds type declaration generation * Normalized codebase config and typings cleanup * Fixes ts errors on utils * AE Task converted to typescript * Makes task monad types stricter + Adds some typing to core module * Fixes broken test for task * Fixes some more typing (operation) * CORE typed. Temporary typing patches in someplaces * Fully typescript now (with effects) * Ts warning fixes * TODO update * Dependencies updated
- Loading branch information
Showing
65 changed files
with
2,195 additions
and
783 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
module.exports = { | ||
'presets': [ | ||
// '@babel/preset-typescript', | ||
'@babel/preset-env', | ||
], | ||
'plugins': [ | ||
'@babel/plugin-proposal-class-properties' | ||
'@babel/plugin-proposal-class-properties', | ||
'@babel/plugin-transform-typescript', | ||
] | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.