mirror of
https://github.com/zhigang1992/graphql-engine.git
synced 2026-05-28 15:23:56 +08:00
* 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 6e6e4835d9f425542cd4048d3eef8af0be2bdaf6. * 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/**/*"]
|
|
}
|