Skip to content

Commit 38205b5

Browse files
author
Rajat
committed
build fixes
1 parent 166ebd9 commit 38205b5

3 files changed

Lines changed: 299 additions & 663 deletions

File tree

packages/components-library/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
"url": "https://github.com/codelitdev/courselit/issues"
3838
},
3939
"devDependencies": {
40+
"@types/node": "^24.10.1",
4041
"@types/react": "^18.3.7",
4142
"@types/react-dom": "^18.3.0",
4243
"eslint": "^8.57.0",
Lines changed: 23 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,31 @@
11
{
22
"extends": "tsconfig/react-library.json",
3-
"exclude": ["dist", "build", "node_modules"],
3+
"exclude": [
4+
"dist",
5+
"build",
6+
"node_modules"
7+
],
48
"compilerOptions": {
59
"outDir": "./dist",
6-
"lib": ["dom"],
10+
"lib": [
11+
"dom",
12+
"ES2017"
13+
],
14+
"types": [
15+
"node"
16+
],
717
"strict": false,
818
"paths": {
9-
"@/*": ["./src/*"],
10-
"react": ["./node_modules/@types/react"]
19+
"@/*": [
20+
"./src/*"
21+
],
22+
"react": [
23+
"./node_modules/@types/react"
24+
]
1125
}
1226
},
13-
"include": ["src/**/*", "additional.d.ts"]
14-
}
27+
"include": [
28+
"src/**/*",
29+
"additional.d.ts"
30+
]
31+
}

0 commit comments

Comments
 (0)