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

TypeScript compatibility improvement #3651

Merged
merged 1 commit into from
Sep 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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 .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.*
!.eslintrc.json
!.eslintignore
!.npmignore

/dist
/node_modules
Expand Down
11 changes: 11 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
*.ts
!*.d.ts
.*
Gemfile
Gemfile.lock
_develop
.github
.vscode
docs
test
tsconfig.json
14 changes: 0 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,6 @@
"author": "Jason Chen <jhchen7@gmail.com>",
"homepage": "http://quilljs.com",
"main": "dist/quill.js",
"exports": {
".": "./dist/quill.js",
"./core": "./dist/core.js",
"./blots/*": "./dist/blots/*.js",
"./formats/*": "./dist/formats/*.js",
"./modules/*": "./dist/modules/*.js",
"./themes/*": "./dist/themes/*.js",
"./ui/*": "./dist/ui/*.js",
"./assets/": "./assets/"
},
"files": [
"assets",
"dist"
],
"config": {
"ports": {
"proxy": "9000",
Expand Down
1 change: 0 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"compilerOptions": {
"outDir": "./dist",
"allowSyntheticDefaultImports": true,
"target": "es6",
"sourceMap": true,
Expand Down