Skip to content

Commit 1e05f49

Browse files
Refactor TypeScript configuration for react-on-rails packages
- Removed unnecessary "exclude" field from tsconfig.json in both react-on-rails and react-on-rails-pro packages. - Simplified TypeScript configuration to focus on source files. These changes streamline the TypeScript setup for better clarity and maintainability.
1 parent a6ee325 commit 1e05f49

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

packages/react-on-rails-pro/tsconfig.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@
33
"compilerOptions": {
44
"outDir": "./lib"
55
},
6-
"include": ["src/**/*"],
7-
"exclude": ["node_modules", "lib", "tests"]
6+
"include": ["src/**/*"]
87
}

packages/react-on-rails/tsconfig.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@
33
"compilerOptions": {
44
"outDir": "./lib"
55
},
6-
"include": ["src/**/*"],
7-
"exclude": ["node_modules", "lib", "tests"]
6+
"include": ["src/**/*"]
87
}

0 commit comments

Comments
 (0)