-
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.
fix labelValue types, update fluent-rc tsconfig (#3948)
* fix labelValue types, update fluent-rc tsconfig * replace generic with function overloads * update eslint config * typescript project reference for fluentui-rc in playground * update changelog
- Loading branch information
Showing
13 changed files
with
67 additions
and
22 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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
packages/*/lib | ||
packages/*/lib-test | ||
packages/*/dist | ||
packages/docs/build |
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
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,24 @@ | ||
{ | ||
"extends": "../../../tsconfig.base.json", | ||
"include": [ | ||
"./" | ||
], | ||
"compilerOptions": { | ||
"rootDir": "./", | ||
"outDir": "../lib", | ||
"baseUrl": "../", | ||
"jsx": "react-jsx", | ||
"skipLibCheck": true | ||
}, | ||
"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
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" | ||
} | ||
] | ||
} |
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 |
---|---|---|
@@ -1,22 +1,12 @@ | ||
{ | ||
"extends": "../../tsconfig.base.json", | ||
"include": ["src"], | ||
"compilerOptions": { | ||
"rootDir": "./src", | ||
"outDir": "./lib", | ||
"baseUrl": "./", | ||
"jsx": "react-jsx", | ||
"skipLibCheck": true | ||
}, | ||
"files": [], | ||
"references": [ | ||
{ | ||
"path": "../core" | ||
"path": "./src" | ||
}, | ||
{ | ||
"path": "../utils" | ||
}, | ||
{ | ||
"path": "../validator-ajv8" | ||
"path": "./test" | ||
} | ||
] | ||
} |
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