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

Introduce JSDoc-based Type System with checkJs flag #5318

Merged
merged 44 commits into from
Dec 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
7e7f329
correct many descriptions; automatic type declarations generation wit…
mkslanc Aug 25, 2023
1d09f95
continue type casting
mkslanc Aug 25, 2023
9110b45
convert to es6 class
mkslanc Aug 26, 2023
ab962b9
continue providing types
mkslanc Aug 27, 2023
84d383b
continue providing types
mkslanc Aug 30, 2023
55f04df
Merge branch 'selection-es6' into better-types
mkslanc Aug 30, 2023
d9dc97e
Merge branch 'master' into better-types
mkslanc Sep 8, 2023
f60e632
continue providing types
mkslanc Sep 14, 2023
d8411db
continue providing types
mkslanc Sep 17, 2023
25ba191
Merge branch 'master' into better-types
mkslanc Sep 17, 2023
6cf736d
resolve merge conflicts with new version
mkslanc Sep 17, 2023
5d05997
revert demo changes
mkslanc Sep 17, 2023
02c9a3c
fix eslint errors
mkslanc Sep 17, 2023
9eb7d72
fix bugs
mkslanc Sep 17, 2023
d9e9a19
return demo
mkslanc Sep 17, 2023
cd5ce9a
continue providing types
mkslanc Sep 18, 2023
47027a1
describe available events for different classes
mkslanc Sep 21, 2023
ba40d17
improvements in types
mkslanc Sep 22, 2023
caaa69e
better way to merge interfaces
nightwing Sep 26, 2023
5402ec9
use declare module instead of hackish typedef's
mkslanc Sep 28, 2023
08b4f18
Merge branch 'master' into better-types
mkslanc Sep 28, 2023
43901dc
resolve merge conflicts
mkslanc Sep 28, 2023
06bc8c8
fix multiline jsdoc types definitions
mkslanc Sep 28, 2023
ad589bd
continue providing types
mkslanc Sep 30, 2023
18069d5
continue providing types
mkslanc Oct 4, 2023
b729b74
move some inline typedef imports to separate typedefs
mkslanc Oct 7, 2023
79de751
correct declarations
mkslanc Oct 15, 2023
07f9b8e
first version of declaration generator for ace-code
mkslanc Oct 15, 2023
6bfc9e3
correct declarations
mkslanc Oct 17, 2023
feacbc8
generate declaration for ace-builds
mkslanc Oct 17, 2023
7575de5
separate building for ace-code and ace-builds; correct build script
mkslanc Oct 19, 2023
ca733da
rename `correctModulesForAceBuilds` to `updateDeclarationModuleNames`
mkslanc Oct 23, 2023
7e32810
Merge pull request #3 from mkslanc/types-generator
mkslanc Oct 23, 2023
da92d09
fix left errors in generation
mkslanc Nov 2, 2023
9a5b4d0
change declaration structure for ace-code
mkslanc Nov 2, 2023
29ba8ab
Merge branch 'master' into better-types
mkslanc Nov 2, 2023
f36b98e
add types to new declarations
mkslanc Nov 2, 2023
16db9ca
remove declaration_generator; make ace-builds to use old declaration
mkslanc Nov 2, 2023
a88c30d
Merge branch 'master' into better-types
mkslanc Nov 17, 2023
8581365
update to last version
mkslanc Nov 17, 2023
cec9e2a
return base ace.d.ts; use `ace-internal` for inner typings
mkslanc Dec 4, 2023
bd7c3ed
Merge branch 'master' into better-types
mkslanc Dec 4, 2023
cc47699
resolve merge conflicts
mkslanc Dec 4, 2023
07b0241
cleanup
nightwing Dec 5, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ jobs:
fi
# - run: npm run lint
- run: node_modules/.bin/tsc --noImplicitAny --strict --noUnusedLocals --noImplicitReturns --noUnusedParameters --noImplicitThis ace.d.ts
- run: npm run typecheck
- uses: codecov/codecov-action@v3
with:
token: d8edca4b-8e97-41e5-b54e-34c7cf3b2d47
Expand Down
Loading
Loading