Files
cypress/packages/graphql/tsconfig.json
T
Tim Griesser 1d5b185c5b refactor: remove nexus-decorators, add data context (#18211)
- Add `@packages/data-context`
- Add `yarn gulp makePackage` for scaffolding a new server package
- Removes `nexus-decorators` in favor of regular Nexus, creating better separation between data & schema
- Possible to launch project in different browser types

Co-authored-by: Jessica Sachs <jess@jessicasachs.io>
Co-authored-by: Lachlan Miller <lachlan.miller.1990@outlook.com>
Co-authored-by: Cesar <cesaravitia@outlook.com>
2021-09-27 11:49:39 -04:00

22 lines
422 B
JSON

{
"extends": "../ts/tsconfig.json",
"include": [
"src/*.ts",
"src/**/*.ts"
],
"exclude": [
"test",
"script"
],
"compilerOptions": {
"importHelpers": true,
"strict": true,
"allowJs": false,
"noImplicitAny": true,
"resolveJsonModule": true,
"experimentalDecorators": true,
"noUncheckedIndexedAccess": true,
"importsNotUsedAsValues": "error",
"types": []
},
}