Skip to content

Commit

Permalink
πŸ› Fix TS checking on tasks-gen (#1051)
Browse files Browse the repository at this point in the history
Not sure why, it doesn't work since
#1046
  • Loading branch information
coyotte508 authored Nov 27, 2024
1 parent 1602665 commit fa66cb3
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions packages/tasks-gen/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"lib": ["ES2022", "DOM"],
"module": "NodeNext",
"target": "ESNext",
"moduleResolution": "nodenext",
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"skipLibCheck": true,
"noImplicitOverride": true,
"outDir": "./dist",
"declaration": true,
"declarationMap": true,
"types": ["vitest/importMeta"]
},
"include": ["scripts"],
"exclude": ["dist"]
}

0 comments on commit fa66cb3

Please sign in to comment.