Skip to content

Plugin doesn't pass files to next plugin (babel) -- need to add TS extensions to Babel plugin  #108

@onoshkodaniil

Description

@onoshkodaniil

What happens and why it is wrong

My plugins:

// ...
	typescript(),
	babel({
		runtimeHelpers: true
	}),
// ...

output script is doesn't transformed.

If I remove all typescript things from rollup config and set input file to 'lib/index.es.js' - output script is successfully transformed.

You can reproduce it with my project:
https://github.com/TrigenSoftware/flexis-redux/tree/upd-deps-wip

npm i
npm run build

plugin output with verbosity 3

log:
rpt2: typescript version: 3.0.1
rpt2: tslib version: 1.9.3
rpt2: rollup-plugin-typescript2 version: 0.17.0
rpt2: plugin options:
{
    "verbosity": 3,
    "check": true,
    "clean": false,
    "cacheRoot": "/Users/dangreen/github/flexis-redux/.rpt2_cache",
    "include": [
        "*.ts+(|x)",
        "**/*.ts+(|x)"
    ],
    "exclude": [
        "*.d.ts",
        "**/*.d.ts"
    ],
    "abortOnError": true,
    "rollupCommonJSResolveHack": false,
    "typescript": "version 3.0.1",
    "useTsconfigDeclarationDir": false,
    "tsconfigOverride": {},
    "transformers": [],
    "tsconfigDefaults": {},
    "objectHashIgnoreUnknownHack": false
}
rpt2: rollup config:
{
    "experimentalCacheExpiry": 10,
    "inlineDynamicImports": false,
    "input": "src/index.ts",
    "chunkGroupingSize": 5000,
    "perf": false,
    "plugins": [
        {
            "name": "tslint",
            "sourceMap": false
        },
        {
            "name": "commonjs"
        },
        {
            "name": "rpt2"
        },
        {
            "name": "babel"
        },
        {
            "name": "node-resolve"
        },
        {}
    ],
    "entry": "src/index.ts"
}
rpt2: built-in options overrides: {
    "noEmitHelpers": false,
    "importHelpers": true,
    "noResolve": false,
    "noEmit": false,
    "inlineSourceMap": false,
    "outDir": "/Users/dangreen/github/flexis-redux/.rpt2_cache/placeholder",
    "moduleResolution": 2,
    "declarationDir": "/Users/dangreen/github/flexis-redux",
    "sourceRoot": null
}
rpt2: parsed tsconfig: {
    "options": {
        "module": 6,
        "declaration": true,
        "declarationMap": true,
        "moduleResolution": 2,
        "target": 6,
        "jsx": 2,
        "noUnusedLocals": true,
        "noUnusedParameters": true,
        "noImplicitAny": false,
        "allowSyntheticDefaultImports": true,
        "esModuleInterop": true,
        "experimentalDecorators": true,
        "inlineSourceMap": false,
        "lib": [
            "lib.esnext.d.ts"
        ],
        "configFilePath": "/Users/dangreen/github/flexis-redux/tsconfig.json",
        "noEmitHelpers": false,
        "importHelpers": true,
        "noResolve": false,
        "noEmit": false,
        "outDir": "/Users/dangreen/github/flexis-redux/.rpt2_cache/placeholder",
        "declarationDir": "/Users/dangreen/github/flexis-redux",
        "sourceRoot": null
    },
    "fileNames": [
        "/Users/dangreen/github/flexis-redux/src/index.ts"
    ],
    "typeAcquisition": {
        "enable": false,
        "include": [],
        "exclude": []
    },
    "raw": {
        "compilerOptions": {
            "module": "esnext",
            "declaration": true,
            "declarationMap": true,
            "moduleResolution": "node",
            "target": "esnext",
            "jsx": "react",
            "noUnusedLocals": true,
            "noUnusedParameters": true,
            "noImplicitAny": false,
            "allowSyntheticDefaultImports": true,
            "esModuleInterop": true,
            "experimentalDecorators": true,
            "inlineSourceMap": true,
            "lib": [
                "esnext"
            ]
        },
        "include": [
            "src/index.ts"
        ],
        "exclude": [
            "lib/**/*"
        ],
        "compileOnSave": false
    },
    "errors": [],
    "wildcardDirectories": {},
    "compileOnSave": false,
    "configFileSpecs": {
        "includeSpecs": [
            "src/index.ts"
        ],
        "excludeSpecs": [
            "lib/**/*"
        ],
        "validatedIncludeSpecs": [
            "src/index.ts"
        ],
        "validatedExcludeSpecs": [
            "lib/**/*"
        ],
        "wildcardDirectories": {}
    }
}
rpt2: included:
'[
    "*.ts+(|x)",
    "**/*.ts+(|x)"
]'
rpt2: excluded:
'[
    "*.d.ts",
    "**/*.d.ts"
]'
rpt2: Ambient types:
rpt2:     /Users/dangreen/github/flexis-redux/node_modules/@types/estree/index.d.ts
rpt2:     /Users/dangreen/github/flexis-redux/node_modules/@types/events/index.d.ts
rpt2:     /Users/dangreen/github/flexis-redux/node_modules/@types/fs-extra/index.d.ts
rpt2:     /Users/dangreen/github/flexis-redux/node_modules/@types/glob/index.d.ts
rpt2:     /Users/dangreen/github/flexis-redux/node_modules/@types/handlebars/index.d.ts
rpt2:     /Users/dangreen/github/flexis-redux/node_modules/@types/highlight.js/index.d.ts
rpt2:     /Users/dangreen/github/flexis-redux/node_modules/@types/jest/index.d.ts
rpt2:     /Users/dangreen/github/flexis-redux/node_modules/@types/lodash/index.d.ts
rpt2:     /Users/dangreen/github/flexis-redux/node_modules/@types/marked/index.d.ts
rpt2:     /Users/dangreen/github/flexis-redux/node_modules/@types/minimatch/index.d.ts
rpt2:     /Users/dangreen/github/flexis-redux/node_modules/@types/node/index.d.ts
rpt2:     /Users/dangreen/github/flexis-redux/node_modules/@types/prop-types/index.d.ts
rpt2:     /Users/dangreen/github/flexis-redux/node_modules/@types/react/index.d.ts
rpt2:     /Users/dangreen/github/flexis-redux/node_modules/@types/shelljs/index.d.ts
rpt2: transpiling '/Users/dangreen/github/flexis-redux/src/index.ts'
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/code/cache/db9b1deed2ca4c165b5a5fb4241efc96ab5c078b'
rpt2:     cache hit
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/syntacticDiagnostics/cache/db9b1deed2ca4c165b5a5fb4241efc96ab5c078b'
rpt2:     cache hit
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/semanticDiagnostics/cache/db9b1deed2ca4c165b5a5fb4241efc96ab5c078b'
rpt2:     cache hit
rpt2: generated declarations for '/Users/dangreen/github/flexis-redux/src/index.ts'
rpt2: dependency '/Users/dangreen/github/flexis-redux/src/Store.ts'
rpt2:     imported by '/Users/dangreen/github/flexis-redux/src/index.ts'
rpt2: resolving './Store'
rpt2:     to '/Users/dangreen/github/flexis-redux/src/Store.ts'
rpt2: dependency '/Users/dangreen/github/flexis-redux/src/Reducer.ts'
rpt2:     imported by '/Users/dangreen/github/flexis-redux/src/index.ts'
rpt2: resolving './Reducer'
rpt2:     to '/Users/dangreen/github/flexis-redux/src/Reducer.ts'
rpt2: dependency '/Users/dangreen/github/flexis-redux/src/Provider.tsx'
rpt2:     imported by '/Users/dangreen/github/flexis-redux/src/index.ts'
rpt2: resolving './Provider'
rpt2:     to '/Users/dangreen/github/flexis-redux/src/Provider.tsx'
rpt2: dependency '/Users/dangreen/github/flexis-redux/src/Connect.tsx'
rpt2:     imported by '/Users/dangreen/github/flexis-redux/src/index.ts'
rpt2: resolving './Connect'
rpt2:     to '/Users/dangreen/github/flexis-redux/src/Connect.tsx'
rpt2: transpiling '/Users/dangreen/github/flexis-redux/src/Store.ts'
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/code/cache/5882719453155cbf82d077af26036114dc06e93b'
rpt2:     cache hit
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/syntacticDiagnostics/cache/5882719453155cbf82d077af26036114dc06e93b'
rpt2:     cache hit
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/semanticDiagnostics/cache/5882719453155cbf82d077af26036114dc06e93b'
rpt2:     cache hit
rpt2: generated declarations for '/Users/dangreen/github/flexis-redux/src/Store.ts'
rpt2: transpiling '/Users/dangreen/github/flexis-redux/src/Reducer.ts'
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/code/cache/d000b2273d3e7a07157ba2334cc6e6b5d5b14dd9'
rpt2:     cache hit
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/syntacticDiagnostics/cache/d000b2273d3e7a07157ba2334cc6e6b5d5b14dd9'
rpt2:     cache hit
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/semanticDiagnostics/cache/d000b2273d3e7a07157ba2334cc6e6b5d5b14dd9'
rpt2:     cache hit
rpt2: generated declarations for '/Users/dangreen/github/flexis-redux/src/Reducer.ts'
rpt2: transpiling '/Users/dangreen/github/flexis-redux/src/Provider.tsx'
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/code/cache/faee82575e02807fe1abf7d0d5186a46d7cd1237'
rpt2:     cache hit
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/syntacticDiagnostics/cache/faee82575e02807fe1abf7d0d5186a46d7cd1237'
rpt2:     cache hit
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/semanticDiagnostics/cache/faee82575e02807fe1abf7d0d5186a46d7cd1237'
rpt2:     cache hit
rpt2: generated declarations for '/Users/dangreen/github/flexis-redux/src/Provider.tsx'
rpt2: transpiling '/Users/dangreen/github/flexis-redux/src/Connect.tsx'
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/code/cache/24a621b930e65e40b9b67dc935ba0f1a03fd6deb'
rpt2:     cache hit
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/syntacticDiagnostics/cache/24a621b930e65e40b9b67dc935ba0f1a03fd6deb'
rpt2:     cache hit
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/semanticDiagnostics/cache/24a621b930e65e40b9b67dc935ba0f1a03fd6deb'
rpt2:     cache hit
rpt2: generated declarations for '/Users/dangreen/github/flexis-redux/src/Connect.tsx'
rpt2: dependency '/Users/dangreen/github/flexis-redux/src/Reducer.ts'
rpt2:     imported by '/Users/dangreen/github/flexis-redux/src/Store.ts'
rpt2: resolving './Reducer'
rpt2:     to '/Users/dangreen/github/flexis-redux/src/Reducer.ts'
rpt2: dependency '/Users/dangreen/github/flexis-redux/src/utils/proto.ts'
rpt2:     imported by '/Users/dangreen/github/flexis-redux/src/Reducer.ts'
rpt2: resolving './utils/proto'
rpt2:     to '/Users/dangreen/github/flexis-redux/src/utils/proto.ts'
rpt2: dependency '/Users/dangreen/github/flexis-redux/src/Actions.ts'
rpt2:     imported by '/Users/dangreen/github/flexis-redux/src/Reducer.ts'
rpt2: resolving './Actions'
rpt2:     to '/Users/dangreen/github/flexis-redux/src/Actions.ts'
rpt2: dependency '/Users/dangreen/github/flexis-redux/src/Store.ts'
rpt2:     imported by '/Users/dangreen/github/flexis-redux/src/Provider.tsx'
rpt2: resolving './Store'
rpt2:     to '/Users/dangreen/github/flexis-redux/src/Store.ts'
rpt2: dependency '/Users/dangreen/github/flexis-redux/src/StoreContext.ts'
rpt2:     imported by '/Users/dangreen/github/flexis-redux/src/Provider.tsx'
rpt2: resolving './StoreContext'
rpt2:     to '/Users/dangreen/github/flexis-redux/src/StoreContext.ts'
rpt2: dependency '/Users/dangreen/github/flexis-redux/src/utils/Selector.ts'
rpt2:     imported by '/Users/dangreen/github/flexis-redux/src/Connect.tsx'
rpt2: resolving './utils/Selector'
rpt2:     to '/Users/dangreen/github/flexis-redux/src/utils/Selector.ts'
rpt2: dependency '/Users/dangreen/github/flexis-redux/src/StoreContext.ts'
rpt2:     imported by '/Users/dangreen/github/flexis-redux/src/Connect.tsx'
rpt2: resolving './StoreContext'
rpt2:     to '/Users/dangreen/github/flexis-redux/src/StoreContext.ts'
rpt2: transpiling '/Users/dangreen/github/flexis-redux/src/utils/proto.ts'
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/code/cache/8122b0586456154985455f1e45eeb49174f766ca'
rpt2:     cache hit
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/syntacticDiagnostics/cache/8122b0586456154985455f1e45eeb49174f766ca'
rpt2:     cache hit
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/semanticDiagnostics/cache/8122b0586456154985455f1e45eeb49174f766ca'
rpt2:     cache hit
rpt2: generated declarations for '/Users/dangreen/github/flexis-redux/src/utils/proto.ts'
rpt2: transpiling '/Users/dangreen/github/flexis-redux/src/Actions.ts'
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/code/cache/c7ff7693e85e0bf4afe07c219c0d2caad729783d'
rpt2:     cache hit
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/syntacticDiagnostics/cache/c7ff7693e85e0bf4afe07c219c0d2caad729783d'
rpt2:     cache hit
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/semanticDiagnostics/cache/c7ff7693e85e0bf4afe07c219c0d2caad729783d'
rpt2:     cache hit
rpt2: generated declarations for '/Users/dangreen/github/flexis-redux/src/Actions.ts'
rpt2: transpiling '/Users/dangreen/github/flexis-redux/src/StoreContext.ts'
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/code/cache/f0f6e8e02671852467e839d18ad5a729bff548e5'
rpt2:     cache hit
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/syntacticDiagnostics/cache/f0f6e8e02671852467e839d18ad5a729bff548e5'
rpt2:     cache hit
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/semanticDiagnostics/cache/f0f6e8e02671852467e839d18ad5a729bff548e5'
rpt2:     cache hit
rpt2: generated declarations for '/Users/dangreen/github/flexis-redux/src/StoreContext.ts'
rpt2: transpiling '/Users/dangreen/github/flexis-redux/src/utils/Selector.ts'
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/code/cache/322a6cfb5ad3ee3bd3d80824119fc554421ec08f'
rpt2:     cache hit
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/syntacticDiagnostics/cache/322a6cfb5ad3ee3bd3d80824119fc554421ec08f'
rpt2:     cache hit
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/semanticDiagnostics/cache/322a6cfb5ad3ee3bd3d80824119fc554421ec08f'
rpt2:     cache hit
rpt2: generated declarations for '/Users/dangreen/github/flexis-redux/src/utils/Selector.ts'
rpt2: dependency '/Users/dangreen/github/flexis-redux/src/utils/proto.ts'
rpt2:     imported by '/Users/dangreen/github/flexis-redux/src/Actions.ts'
rpt2: resolving './utils/proto'
rpt2:     to '/Users/dangreen/github/flexis-redux/src/utils/proto.ts'
rpt2: dependency '/Users/dangreen/github/flexis-redux/src/utils/mergeProps.ts'
rpt2:     imported by '/Users/dangreen/github/flexis-redux/src/utils/Selector.ts'
rpt2: resolving './mergeProps'
rpt2:     to '/Users/dangreen/github/flexis-redux/src/utils/mergeProps.ts'
rpt2: dependency '/Users/dangreen/github/flexis-redux/src/utils/initMapFunction.ts'
rpt2:     imported by '/Users/dangreen/github/flexis-redux/src/utils/Selector.ts'
rpt2: resolving './initMapFunction'
rpt2:     to '/Users/dangreen/github/flexis-redux/src/utils/initMapFunction.ts'
rpt2: dependency '/Users/dangreen/github/flexis-redux/src/utils/isEqual.ts'
rpt2:     imported by '/Users/dangreen/github/flexis-redux/src/utils/Selector.ts'
rpt2: resolving './isEqual'
rpt2:     to '/Users/dangreen/github/flexis-redux/src/utils/isEqual.ts'
rpt2: transpiling '/Users/dangreen/github/flexis-redux/src/utils/mergeProps.ts'
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/code/cache/dc8e9beac0cbf73c17f9035b2b004394ab0c2663'
rpt2:     cache hit
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/syntacticDiagnostics/cache/dc8e9beac0cbf73c17f9035b2b004394ab0c2663'
rpt2:     cache hit
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/semanticDiagnostics/cache/dc8e9beac0cbf73c17f9035b2b004394ab0c2663'
rpt2:     cache hit
rpt2: generated declarations for '/Users/dangreen/github/flexis-redux/src/utils/mergeProps.ts'
rpt2: transpiling '/Users/dangreen/github/flexis-redux/src/utils/initMapFunction.ts'
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/code/cache/60bc2d48200151122ebba7971e016299fe149c62'
rpt2:     cache hit
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/syntacticDiagnostics/cache/60bc2d48200151122ebba7971e016299fe149c62'
rpt2:     cache hit
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/semanticDiagnostics/cache/60bc2d48200151122ebba7971e016299fe149c62'
rpt2:     cache hit
rpt2: generated declarations for '/Users/dangreen/github/flexis-redux/src/utils/initMapFunction.ts'
rpt2: transpiling '/Users/dangreen/github/flexis-redux/src/utils/isEqual.ts'
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/code/cache/b36ec59bb8ccd40a584f32f30476fd2a73312e44'
rpt2:     cache hit
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/syntacticDiagnostics/cache/b36ec59bb8ccd40a584f32f30476fd2a73312e44'
rpt2:     cache hit
rpt2:     cache: '/Users/dangreen/github/flexis-redux/.rpt2_cache/rpt2_e5843b409a5cd3d2f309b90db1c7fc57e2f80d73/semanticDiagnostics/cache/b36ec59bb8ccd40a584f32f30476fd2a73312e44'
rpt2:     cache hit
rpt2: generated declarations for '/Users/dangreen/github/flexis-redux/src/utils/isEqual.ts'
rpt2: generating target 1
rpt2: rolling caches
rpt2: generating target 2
rpt2: rolling caches
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/index.ts' to '/Users/dangreen/github/flexis-redux/lib/index.d.ts'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/index.ts' to '/Users/dangreen/github/flexis-redux/lib/index.d.ts.map'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/Store.ts' to '/Users/dangreen/github/flexis-redux/lib/Store.d.ts'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/Store.ts' to '/Users/dangreen/github/flexis-redux/lib/Store.d.ts.map'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/Reducer.ts' to '/Users/dangreen/github/flexis-redux/lib/Reducer.d.ts'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/Reducer.ts' to '/Users/dangreen/github/flexis-redux/lib/Reducer.d.ts.map'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/Provider.tsx' to '/Users/dangreen/github/flexis-redux/lib/Provider.d.ts'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/Provider.tsx' to '/Users/dangreen/github/flexis-redux/lib/Provider.d.ts.map'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/Connect.tsx' to '/Users/dangreen/github/flexis-redux/lib/Connect.d.ts'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/Connect.tsx' to '/Users/dangreen/github/flexis-redux/lib/Connect.d.ts.map'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/utils/proto.ts' to '/Users/dangreen/github/flexis-redux/lib/utils/proto.d.ts'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/utils/proto.ts' to '/Users/dangreen/github/flexis-redux/lib/utils/proto.d.ts.map'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/Actions.ts' to '/Users/dangreen/github/flexis-redux/lib/Actions.d.ts'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/Actions.ts' to '/Users/dangreen/github/flexis-redux/lib/Actions.d.ts.map'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/StoreContext.ts' to '/Users/dangreen/github/flexis-redux/lib/StoreContext.d.ts'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/StoreContext.ts' to '/Users/dangreen/github/flexis-redux/lib/StoreContext.d.ts.map'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/utils/Selector.ts' to '/Users/dangreen/github/flexis-redux/lib/utils/Selector.d.ts'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/utils/Selector.ts' to '/Users/dangreen/github/flexis-redux/lib/utils/Selector.d.ts.map'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/utils/mergeProps.ts' to '/Users/dangreen/github/flexis-redux/lib/utils/mergeProps.d.ts'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/utils/mergeProps.ts' to '/Users/dangreen/github/flexis-redux/lib/utils/mergeProps.d.ts.map'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/utils/initMapFunction.ts' to '/Users/dangreen/github/flexis-redux/lib/utils/initMapFunction.d.ts'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/utils/initMapFunction.ts' to '/Users/dangreen/github/flexis-redux/lib/utils/initMapFunction.d.ts.map'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/utils/isEqual.ts' to '/Users/dangreen/github/flexis-redux/lib/utils/isEqual.d.ts'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/utils/isEqual.ts' to '/Users/dangreen/github/flexis-redux/lib/utils/isEqual.d.ts.map'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/index.ts' to '/Users/dangreen/github/flexis-redux/lib/index.d.ts'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/index.ts' to '/Users/dangreen/github/flexis-redux/lib/index.d.ts.map'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/Store.ts' to '/Users/dangreen/github/flexis-redux/lib/Store.d.ts'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/Store.ts' to '/Users/dangreen/github/flexis-redux/lib/Store.d.ts.map'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/Reducer.ts' to '/Users/dangreen/github/flexis-redux/lib/Reducer.d.ts'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/Reducer.ts' to '/Users/dangreen/github/flexis-redux/lib/Reducer.d.ts.map'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/Provider.tsx' to '/Users/dangreen/github/flexis-redux/lib/Provider.d.ts'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/Provider.tsx' to '/Users/dangreen/github/flexis-redux/lib/Provider.d.ts.map'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/Connect.tsx' to '/Users/dangreen/github/flexis-redux/lib/Connect.d.ts'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/Connect.tsx' to '/Users/dangreen/github/flexis-redux/lib/Connect.d.ts.map'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/utils/proto.ts' to '/Users/dangreen/github/flexis-redux/lib/utils/proto.d.ts'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/utils/proto.ts' to '/Users/dangreen/github/flexis-redux/lib/utils/proto.d.ts.map'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/Actions.ts' to '/Users/dangreen/github/flexis-redux/lib/Actions.d.ts'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/Actions.ts' to '/Users/dangreen/github/flexis-redux/lib/Actions.d.ts.map'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/StoreContext.ts' to '/Users/dangreen/github/flexis-redux/lib/StoreContext.d.ts'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/StoreContext.ts' to '/Users/dangreen/github/flexis-redux/lib/StoreContext.d.ts.map'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/utils/Selector.ts' to '/Users/dangreen/github/flexis-redux/lib/utils/Selector.d.ts'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/utils/Selector.ts' to '/Users/dangreen/github/flexis-redux/lib/utils/Selector.d.ts.map'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/utils/mergeProps.ts' to '/Users/dangreen/github/flexis-redux/lib/utils/mergeProps.d.ts'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/utils/mergeProps.ts' to '/Users/dangreen/github/flexis-redux/lib/utils/mergeProps.d.ts.map'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/utils/initMapFunction.ts' to '/Users/dangreen/github/flexis-redux/lib/utils/initMapFunction.d.ts'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/utils/initMapFunction.ts' to '/Users/dangreen/github/flexis-redux/lib/utils/initMapFunction.d.ts.map'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/utils/isEqual.ts' to '/Users/dangreen/github/flexis-redux/lib/utils/isEqual.d.ts'
rpt2: writing declarations for '/Users/dangreen/github/flexis-redux/src/utils/isEqual.ts' to '/Users/dangreen/github/flexis-redux/lib/utils/isEqual.d.ts.map'

Metadata

Metadata

Assignees

No one assigned

    Labels

    kind: supportAsking for support with something or a specific use casescope: docsDocumentation could be improved. Or changes that only affect docsscope: integrationRelated to an integration, not necessarily to core (but could influence core)solution: already possibleThis is already possible / this feature already exists

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions