graphql-engine/console/tsconfig.json
Sooraj 9130fa8b8f console/ci: add unit tests
GitOrigin-RevId: 01c9328a298dc6e53b910fa05d7587614c324f20
2021-04-07 13:28:13 +00:00

19 lines
491 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", "jest"],
"typeRoots": ["./src/types", "node_modules/@types"],
"resolveJsonModule": true,
},
"exclude": ["node_modules", "**/*.spec.ts", "**/*.test.ts", "cypress"],
"include": ["src/**/*"]
}