Skip to content

Commit fa66cb3

Browse files
authored
šŸ› Fix TS checking on tasks-gen (#1051)
Not sure why, it doesn't work since #1046
1 parent 1602665 commit fa66cb3

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

ā€Žpackages/tasks-gen/tsconfig.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"compilerOptions": {
3+
"allowSyntheticDefaultImports": true,
4+
"lib": ["ES2022", "DOM"],
5+
"module": "NodeNext",
6+
"target": "ESNext",
7+
"moduleResolution": "nodenext",
8+
"forceConsistentCasingInFileNames": true,
9+
"strict": true,
10+
"noImplicitAny": true,
11+
"strictNullChecks": true,
12+
"skipLibCheck": true,
13+
"noImplicitOverride": true,
14+
"outDir": "./dist",
15+
"declaration": true,
16+
"declarationMap": true,
17+
"types": ["vitest/importMeta"]
18+
},
19+
"include": ["scripts"],
20+
"exclude": ["dist"]
21+
}

0 commit comments

Comments
Ā (0)