mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 17:02:49 +03:00
4c8687fdab
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/2421 Co-authored-by: Martin Mark <74692114+martin-hasura@users.noreply.github.com> GitOrigin-RevId: 52dc6e600ebc174616e3f408c4394a3993b6dae7
31 lines
632 B
JSON
31 lines
632 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",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/*.spec.ts",
|
|
"**/*.spec.tsx",
|
|
"**/*.test.ts",
|
|
"**/*.test.tsx",
|
|
"cypress"
|
|
],
|
|
"include": ["src/**/*"]
|
|
}
|