Skip to content

Commit e8630f7

Browse files
committed
feat: update tsconfig.json to define root directory, exclude specific folders, and add type definitions
1 parent aab63e1 commit e8630f7

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

tsconfig.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,15 @@
55
"target": "es2020",
66
"lib": ["es2020", "dom"],
77
"strict": true,
8-
"skipLibCheck": true
8+
"skipLibCheck": true,
9+
"rootDir": "src",
10+
"baseUrl": "src/"
911
},
10-
"include": ["src/**/*"]
12+
"exclude": [
13+
"node_modules",
14+
"dist",
15+
],
16+
"types": [
17+
"typePatches"
18+
]
1119
}

0 commit comments

Comments
 (0)