Skip to content

Instantly share code, notes, and snippets.

@bryantee
Created April 5, 2019 17:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bryantee/8f01f4762b10c5ced227a6c972deae9b to your computer and use it in GitHub Desktop.
Save bryantee/8f01f4762b10c5ced227a6c972deae9b to your computer and use it in GitHub Desktop.
{
"compilerOptions": {
"allowJs": false,
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"esModuleInterop": true,
"experimentalDecorators": true,
"jsx": "react",
"lib": ["es6"],
"module": "commonjs",
"moduleResolution": "node",
"noEmit": true,
"noImplicitReturns": true,
"sourceMap": true,
"target": "es5",
"types": ["cucumber", "jest", "node", "webdriverio"],
"typeRoots": ["./node_modules/@types", "./src/definitions"],
"paths": {
"*": ["./src/*"],
"@apiMocks/*": ["./functions/src/graphql/mockResolvers/mockData"],
"@assets/*": ["./assets"],
"@clients/*": ["./src/clients/*"],
"@components/*": ["./storybook/stories/*"],
"@constants/*": ["./src/constants/*"],
"@data/*": ["./src/store/data/*"],
"@definitions/*": ["./src/definitions/*"],
"@design/*": ["./storybook/designtokens/*"],
"@e2e/*": ["./e2e/*"],
"@functions/*": ["./functions/src/*"],
"@i18n/*": ["./src/i18n/*"],
"@screens/*": ["./src/screens/*"],
"@services/*": ["./src/services/*"],
"@src/*": ["./src/*"],
"@static/*": ["./src/static/*"],
"@store/*": ["./src/store/*"],
"@style/*": ["./src/style/*"],
"@testUtils/*": ["./testUtils/*"],
"@utils/*": ["./src/utils/*"]
},
"strict": false
},
"exclude": ["node_modules"],
"compileOnSave": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment