mirror of
https://github.com/omnivore-app/omnivore-api.git
synced 2026-05-21 09:10:36 +00:00
22 lines
468 B
JSON
22 lines
468 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "CommonJS",
|
|
"target": "es2022",
|
|
"rootDir": ".",
|
|
"outDir": "dist",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"declaration": true,
|
|
"plugins": [
|
|
{
|
|
"name": "@0no-co/graphqlsp",
|
|
"schema": "./schema.graphql",
|
|
"tadaOutputLocation": "./src/graphql-env.d.ts"
|
|
}
|
|
]
|
|
},
|
|
"include": ["src/**/*.ts"]
|
|
}
|