Skip to content

Commit 9886fbd

Browse files
committed
feat(ts): adjust tsconfig
1 parent 4c27791 commit 9886fbd

File tree

3 files changed

+6
-24
lines changed

3 files changed

+6
-24
lines changed

package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,6 @@
4545
"@commitlint/cli": "^19.5.0",
4646
"@commitlint/config-conventional": "^19.5.0",
4747
"@commitlint/cz-commitlint": "^19.5.0",
48-
"@tsconfig/node-lts": "^20.1.3",
49-
"@tsconfig/strictest": "^2.0.5",
5048
"@types/node": "22",
5149
"bumpp": "^9.5.2",
5250
"commitizen": "^4.3.1",

pnpm-lock.yaml

Lines changed: 0 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tsconfig.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
2-
"extends": [
3-
"@tsconfig/node-lts/tsconfig.json",
4-
"@tsconfig/strictest/tsconfig.json"
5-
],
62
"compilerOptions": {
73
"lib": ["DOM", "ESNext"],
84
"module": "ESNext",
95
"moduleResolution": "Bundler",
106
"paths": {
117
"@/*": ["./src/*"]
128
},
13-
"outDir": "./dist"
14-
}
9+
"strict": true,
10+
"outDir": "./dist",
11+
"esModuleInterop": true,
12+
"isolatedModules": true
13+
},
14+
"include": ["./src/**/*.ts"]
1515
}

0 commit comments

Comments
 (0)