mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
89e7f26c55
https://github.com/hasura/graphql-engine-mono/pull/1678 Co-authored-by: Ikechukwu Eze <22247592+iykekings@users.noreply.github.com> GitOrigin-RevId: 9bfd8a20dfe499b2852e5809471d73ad50b1a48b
27 lines
565 B
JSON
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/**/*"]
|
|
}
|