Skip to content

Commit

Permalink
fix: Correctly build generator project (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
Embraser01 authored Apr 17, 2024
1 parent 7ce9e2c commit 61dd1b1
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .yarn/versions/6472729c.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
releases:
"@typoas/generator": patch

declined:
- "@typoas/cli"
11 changes: 11 additions & 0 deletions packages/typoas-generator/scripts/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"compilerOptions": {
"strict": true,
"module": "commonjs",
"target": "ES2019",
"esModuleInterop": true,
"declaration": true,
"lib": ["ES2019"],
"noEmit": true
}
}
5 changes: 3 additions & 2 deletions packages/typoas-generator/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"esModuleInterop": true,
"declaration": true,
"lib": ["ES2019"],
"outDir": "lib"
"outDir": "lib",
"rootDir": "src"
},
"exclude": ["node_modules", "lib"]
"include": ["src"]
}

0 comments on commit 61dd1b1

Please sign in to comment.