Skip to content

Proposal setup to make the TypeScript migration easier #614

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

Closed
wants to merge 16 commits into from
Closed
12 changes: 10 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"test:debug": "node --inspect-brk ./node_modules/.bin/jest --watch --runInBand",
"test:update": "npm test -- --updateSnapshot --coverage",
"validate": "kcd-scripts validate",
"generate-types": "tsc",
"typecheck": "dtslint ./types/"
},
"files": [
Expand All @@ -41,16 +42,18 @@
"@babel/runtime": "^7.10.2",
"aria-query": "^4.0.2",
"dom-accessibility-api": "^0.4.5",
"eslint-import-resolver-typescript": "^2.0.0",
"pretty-format": "^25.5.0"
},
"devDependencies": {
"dtslint": "^3.6.9",
"@testing-library/jest-dom": "^5.9.0",
"dtslint": "^3.6.9",
"jest-in-case": "^1.0.2",
"jest-serializer-ansi": "^1.0.3",
"jest-watch-select-projects": "^2.0.0",
"jsdom": "^16.2.2",
"kcd-scripts": "^6.2.0"
"kcd-scripts": "^6.2.0",
"typescript": "^3.9.5"
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js",
Expand All @@ -59,6 +62,11 @@
"import/no-unassigned-import": "off",
"import/no-useless-path-segments": "off",
"no-console": "off"
},
"settings": {
"import/resolver": {
"typescript": {}
}
}
},
"eslintIgnore": [
Expand Down
350 changes: 0 additions & 350 deletions src/event-map.js

This file was deleted.

Loading