Skip to content

Commit

Permalink
fix(internal): Fix tsconfig references (#5573)
Browse files Browse the repository at this point in the history
Fix tsconfig references
  • Loading branch information
Swimburger authored Jan 10, 2025
1 parent 70a56dd commit f6a1986
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion generators/go-v2/dynamic-snippets/build.tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@fern-api/typescript-config/main.json",
"extends": "@fern-api/configs/tsconfig/main.json",
"include": ["src/**/*.ts"],
"exclude": ["src/**/__test__"]
}
2 changes: 1 addition & 1 deletion generators/python-v2/pydantic-model/build.tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@fern-api/typescript-config/main.json",
"extends": "@fern-api/configs/tsconfig/main.json",
"include": ["src/**/*.ts"],
"exclude": ["src/**/__test__"]
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@fern-api/typescript-config/main.json",
"extends": "@fern-api/configs/tsconfig/main.json",
"include": ["src/**/*.ts"],
"exclude": ["src/**/__test__"]
}
2 changes: 1 addition & 1 deletion packages/cli/generation/ir-generator/build.tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@fern-api/typescript-config/main.json",
"extends": "@fern-api/configs/tsconfig/main.json",
"include": ["src/**/*.ts"],
"exclude": ["src/**/__test__"]
}
2 changes: 1 addition & 1 deletion packages/snippets/core/build.tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@fern-api/typescript-config/main.json",
"extends": "@fern-api/configs/tsconfig/main.json",
"include": ["src/**/*.ts"],
"exclude": ["src/**/__test__"]
}
2 changes: 1 addition & 1 deletion tsconfig.eslint.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@fern-api/typescript-config/main.json",
"extends": "@fern-api/configs/tsconfig/main.json",
"compilerOptions": {
"types": ["@types/node"],
"noEmit": true
Expand Down

0 comments on commit f6a1986

Please sign in to comment.