Skip to content

Commit

Permalink
Simplify source output structure
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlancollins committed May 13, 2024
1 parent a41e881 commit 4230134
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/solid-form/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"module": "dist/esm/index.js",
"exports": {
".": {
"solid": "./dist/source/solid-form/src/index.js",
"solid": "./dist/source/index.js",
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
Expand Down
9 changes: 6 additions & 3 deletions packages/solid-form/tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,13 @@
"jsxImportSource": "solid-js",
"moduleResolution": "Bundler",
"paths": {
"@tanstack/form-core": ["../form-core/src"]
"@tanstack/form-core": ["../../form-core/src"]
},
"outDir": "dist/source",
"noEmit": false
"noEmit": false,
"declaration": false,
"rootDir": "src"
},
"include": ["src/**/*.ts", "src/**/*.tsx"]
"include": ["src/**/*.ts", "src/**/*.tsx"],
"exclude": ["src/tests/**"]
}

0 comments on commit 4230134

Please sign in to comment.