Skip to content

Commit 8b6a4d2

Browse files
committed
fix: self-contained tsconfig (remove monorepo extends)
Made-with: Cursor
1 parent cc34ed4 commit 8b6a4d2

1 file changed

Lines changed: 14 additions & 3 deletions

File tree

tsconfig.json

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,20 @@
11
{
2-
"extends": "../../tsconfig.base.json",
32
"compilerOptions": {
4-
"rootDir": "src",
3+
"target": "ES2022",
4+
"module": "NodeNext",
5+
"moduleResolution": "NodeNext",
6+
"lib": ["ES2022", "DOM"],
7+
"strict": true,
8+
"noUncheckedIndexedAccess": true,
9+
"noImplicitReturns": true,
10+
"noFallthroughCasesInSwitch": true,
11+
"esModuleInterop": true,
12+
"skipLibCheck": true,
13+
"declaration": true,
14+
"declarationMap": true,
15+
"sourceMap": true,
516
"outDir": "dist",
6-
"lib": ["ES2022", "DOM"]
17+
"rootDir": "src"
718
},
819
"include": ["src/**/*"],
920
"exclude": ["node_modules", "dist", "tests"]

0 commit comments

Comments
 (0)