Skip to content

Commit f215937

Browse files
committed
feat: enable typescript and disable type generation
1 parent 21c4db3 commit f215937

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"node": ">=10"
2525
},
2626
"scripts": {
27-
"build": "kcd-scripts build --ignore \"**/__tests__/**,**/__node_tests__/**,**/__mocks__/**\" && kcd-scripts build --bundle --no-clean",
27+
"build": "kcd-scripts build --ignore \"**/__tests__/**,**/__node_tests__/**,**/__mocks__/**\" && kcd-scripts build --no-ts-defs --bundle --no-clean",
2828
"lint": "kcd-scripts lint",
2929
"setup": "npm install && npm run validate -s",
3030
"test": "kcd-scripts test",
@@ -53,7 +53,7 @@
5353
"jest-serializer-ansi": "^1.0.3",
5454
"jest-watch-select-projects": "^2.0.0",
5555
"jsdom": "^16.4.0",
56-
"kcd-scripts": "^7.5.1",
56+
"kcd-scripts": "^7.5.2",
5757
"typescript": "^4.1.2"
5858
},
5959
"eslintConfig": {

tsconfig.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"extends": "./node_modules/kcd-scripts/shared-tsconfig.json",
3+
"compilerOptions": {
4+
"allowJs": true
5+
}
6+
}

0 commit comments

Comments
 (0)