mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-11-10 18:50:52 +03:00
11b22f7dc9
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5447 GitOrigin-RevId: e80e203a0a29652313d86c8de4382dc9b8796d2a
33 lines
695 B
JSON
33 lines
695 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["es6", "dom", "es2017"],
|
|
"checkJs": false,
|
|
"allowJs": true,
|
|
"jsx": "react",
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"noEmitOnError": false,
|
|
"noImplicitOverride": true,
|
|
"noEmit": true,
|
|
"types": ["react"],
|
|
"typeRoots": ["./src/types", "node_modules/@types"],
|
|
"resolveJsonModule": true,
|
|
"target": "es5",
|
|
"baseUrl": ".",
|
|
"noImplicitReturns": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/*.spec.ts",
|
|
"**/*.spec.tsx",
|
|
"**/*.test.ts",
|
|
"**/*.test.tsx",
|
|
"cypress"
|
|
],
|
|
"include": ["src/**/*"]
|
|
}
|