graphql-engine/console/tsconfig.json
Vijay Prasanna 89e7f26c55 pro-console/security-features: add ability to enable/disable GraphQL introspection per role
https://github.com/hasura/graphql-engine-mono/pull/1678

Co-authored-by: Ikechukwu Eze <22247592+iykekings@users.noreply.github.com>
GitOrigin-RevId: 9bfd8a20dfe499b2852e5809471d73ad50b1a48b
2021-07-20 16:10:15 +00:00

27 lines
565 B
JSON

{
"compilerOptions": {
"lib": ["es6", "dom", "es2017"],
"checkJs": false,
"allowJs": true,
"jsx": "react",
"allowSyntheticDefaultImports": true,
"strict": true,
"esModuleInterop": true,
"noEmitOnError": false,
"noEmit": true,
"types": ["react"],
"typeRoots": ["./src/types", "node_modules/@types"],
"resolveJsonModule": true,
"target": "es5"
},
"exclude": [
"node_modules",
"**/*.spec.ts",
"**/*.spec.tsx",
"**/*.test.ts",
"**/*.test.tsx",
"cypress"
],
"include": ["src/**/*"]
}