mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
71240f310d
* Add check constraints to create table view
* Add input field for check in new column row
* Minor changes
* Remove check input field
* Add tooltip
* Move tooltips to Common/
* Refactor tooltips
* Move expandedContent to separate component
* Add quotation marks for constraint name
* update changelog
* Revert "update changelog"
This reverts commit 6e6e4835d9
.
* update changelog
* Update CHANGELOG.md
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com>
Co-authored-by: rikinsk <rikin.kachhia@gmail.com>
16 lines
327 B
JSON
16 lines
327 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["es6", "dom", "es2017"],
|
|
"checkJs": false,
|
|
"allowJs": true,
|
|
"jsx": "react",
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"noEmitOnError": false,
|
|
"noEmit": true
|
|
},
|
|
"exclude": ["node_modules"],
|
|
"include": ["src/**/*"]
|
|
}
|