Co-authored-by: robertkasza <167509084+robertkasza@users.noreply.github.com> Co-authored-by: Nuno Pato <nunopato@gmail.com> Co-authored-by: David BM <correodelnino@gmail.com>
72 lines
1.7 KiB
JSON
72 lines
1.7 KiB
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"display": "Default",
|
|
"compilerOptions": {
|
|
"composite": false,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"strict": true,
|
|
"isolatedModules": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "node",
|
|
"target": "ESNext",
|
|
"module": "CommonJS",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"sourceMap": true,
|
|
"types": [
|
|
"node"
|
|
],
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"**/*/dist",
|
|
"**/*/build",
|
|
"**/*/.next",
|
|
"**/*/umd"
|
|
],
|
|
"paths": {
|
|
"@nhost/apollo": [
|
|
"../integrations/apollo/src/index.ts"
|
|
],
|
|
"@nhost/docgen": [
|
|
"../packages/docgen/src/index.ts"
|
|
],
|
|
"@nhost/graphql-js": [
|
|
"../packages/graphql-js/src/index.ts"
|
|
],
|
|
"@nhost/hasura-auth-js": [
|
|
"../packages/hasura-auth-js/src/index.ts"
|
|
],
|
|
"@nhost/hasura-storage-js": [
|
|
"../packages/hasura-storage-js/src/index.ts"
|
|
],
|
|
"@nhost/nextjs": [
|
|
"../packages/nextjs/src/index.ts"
|
|
],
|
|
"@nhost/nhost-js": [
|
|
"../packages/nhost-js/src/index.ts"
|
|
],
|
|
"@nhost/react": [
|
|
"../packages/react/src/index.ts"
|
|
],
|
|
"@nhost/react-apollo": [
|
|
"../integrations/react-apollo/src/index.ts"
|
|
],
|
|
"@nhost/vue": [
|
|
"../packages/vue/src/index.ts"
|
|
]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/*/dist",
|
|
"**/*/build",
|
|
"**/*/.next",
|
|
"**/*/__tests__",
|
|
"**/*/__mocks__"
|
|
]
|
|
}
|