graphql-engine/console/tsconfig.json
Nicolas Beaussart 4c8687fdab console: add form library components
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
2021-10-07 09:51:10 +00:00

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/**/*"]
}