-
-
Notifications
You must be signed in to change notification settings - Fork 356
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(solid-form): Add
solid
export condition (#631)
* chore: add solid export condition + build step * chore: formatting * Simplify source output structure * Build with tsc only * Re-enable Nx cloud --------- Co-authored-by: Lachlan Collins <[email protected]>
- Loading branch information
1 parent
1fbc67a
commit e9e0bab
Showing
3 changed files
with
28 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"extends": "../../tsconfig.json", | ||
"compilerOptions": { | ||
"jsx": "preserve", | ||
"jsxImportSource": "solid-js", | ||
"moduleResolution": "Bundler", | ||
"paths": { | ||
"@tanstack/form-core": ["../../form-core/src"] | ||
}, | ||
"outDir": "dist", | ||
"noEmit": false, | ||
"declaration": true, | ||
"rootDir": "src", | ||
"sourceMap": true | ||
}, | ||
"include": ["src/**/*.ts", "src/**/*.tsx"], | ||
"exclude": ["src/tests/**"] | ||
} |