{
    "compilerOptions": {
        "allowJs": true,
        "allowSyntheticDefaultImports": true,
        "esModuleInterop": true,
        "isolatedModules": true,
        "jsx": "react",
        "lib": ["es6"],
        "moduleResolution": "node",
        "noEmit": true,
        "strict": true,
        "sourceMap": true,
        "experimentalDecorators": true,
        "forceConsistentCasingInFileNames": true,
        "importHelpers": true,
        "target": "esnext",
        "baseUrl": ".",
        "resolveJsonModule": true,
        "paths": {
            "@Components/*": ["src/Components/*"],
            "@Components": ["src/Components"],
            "@Definitions/*": ["src/Definitions/*"],
            "@Definitions": ["src/Definitions"],
            "@Styled/*": ["src/Styled/*"],
            "@Styled": ["src/Styled"],
            "@Interfaces/*": ["src/Interfaces/*"],
            "@Interfaces": ["src/Interfaces"],
            "@I18n": ["src/I18n"],
            "@I18n/*": ["src/I18n/*"],
            "@Router/*": ["src/Router/*"],
            "@Router": ["src/Router"],
            "@Services/*": ["src/Services/*"],
            "@Services": ["src/Services"],
            "@Scenes/*": ["scenes/*"],
            "@Test/*": ["test/*"],
            "@Apollo/*": ["src/Apollo/*"],
            "@Apollo": ["src/Apollo"],
            "@Screens/*": ["src/Screens/*"],
            "@Screens": ["src/Screens"]
        }
    },
    "filesGlob": ["typings/index.d.ts", "src/**/*.ts", "src/**/*.tsx"],
    "exclude": [
        "node_modules",
        "babel.config.js",
        "metro.config.js",
        "jest.config.js",
        "test",
        "index.js"
    ],
    "compileOnSave": false
}
