mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 09:22:43 +03:00
651d8ce190
GitOrigin-RevId: 328e28f521f6e5fa20489aaeea2be1f1cc456d56
19 lines
482 B
JSON
19 lines
482 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
|
|
},
|
|
"exclude": ["node_modules", "**/*.spec.ts", "**/*.test.ts", "cypress"],
|
|
"include": ["src/**/*"]
|
|
}
|