-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
typescript project references (#3782)
* move snapTests from core to separate package * nx fix cycle * wip references * ts project references config for tests * @types/jest * ts-ignore * fix types for withIdRefPrefix * type fixes around some deepFreeze usages * cleanup * add readme for snapshots-test * update changelog * random type fixes * more type fixes in playground * update changelog * update readme for snapshots package * update readme for snapshots package
- Loading branch information
Showing
105 changed files
with
1,028 additions
and
236 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -137,3 +137,6 @@ coverage | |
venv | ||
*.orig | ||
out/ | ||
|
||
# typescript tsbuildinfo | ||
*.tsbuildinfo |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,23 @@ | ||
{ | ||
"extends": "../../../tsconfig.base.json", | ||
"include": [ | ||
"./" | ||
], | ||
"compilerOptions": { | ||
"rootDir": "./", | ||
"outDir": "../lib", | ||
"baseUrl": "../", | ||
"jsx": "react-jsx" | ||
}, | ||
"references": [ | ||
{ | ||
"path": "../../core" | ||
}, | ||
{ | ||
"path": "../../utils" | ||
}, | ||
{ | ||
"path": "../../validator-ajv8" | ||
} | ||
] | ||
} |
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
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.base.json", | ||
"include": ["./"], | ||
"compilerOptions": { | ||
"rootDir": "./", | ||
"baseUrl": "../", | ||
"noEmit": true, | ||
"jsx": "react-jsx" | ||
}, | ||
"references": [ | ||
{ | ||
"path": "../src" | ||
}, | ||
{ | ||
"path": "../../snapshot-tests" | ||
} | ||
] | ||
} |
Oops, something went wrong.