-
-
Notifications
You must be signed in to change notification settings - Fork 15.2k
fully move away from index.d.ts #3561
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 6 commits
640535d
72be174
28ac918
e297fda
8b574b3
291c263
d175a49
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,6 +5,7 @@ dist | |
| lib | ||
| es | ||
| coverage | ||
| types | ||
|
|
||
| website/translated_docs | ||
| website/build/ | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,7 +4,7 @@ | |
| "strict": true, | ||
| "baseUrl": "../..", | ||
| "paths": { | ||
| "redux": ["index.d.ts"] | ||
| "redux": ["types/index.d.ts"] | ||
| } | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,15 +10,17 @@ | |
| // "allowJs": true /* Allow javascript files to be compiled. */, | ||
| // "checkJs": true, /* Report errors in .js files. */ | ||
| "jsx": "react" /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */, | ||
| // "declaration": true /* Generates corresponding '.d.ts' file. */, | ||
| // "declarationMap": true /* Generates a sourcemap for each corresponding '.d.ts' file. */, | ||
| "declaration": true /* Generates corresponding '.d.ts' file. */, | ||
| "declarationMap": true /* Generates a sourcemap for each corresponding '.d.ts' file. */, | ||
|
||
| "declarationDir": "./types" /* Output directory for generated declaration files. */, | ||
| // "emitDeclarationOnly": true /* Only emit ‘.d.ts’ declaration files. */, | ||
| "sourceMap": true /* Generates corresponding '.map' file. */, | ||
| // "outFile": "./", /* Concatenate and emit output to single file. */ | ||
| // "outDir": "." /* Redirect output structure to the directory. */, | ||
| // "outDir": "./types" /* Redirect output structure to the directory. */, | ||
| // "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */ | ||
| // "composite": true, /* Enable project compilation */ | ||
| "removeComments": false /* Do not emit comments to output. */, | ||
| "noEmit": true /* Do not emit outputs. */, | ||
| // "noEmit": true /* Do not emit outputs. */, | ||
| // "importHelpers": true, /* Import emit helpers from 'tslib'. */ | ||
| // "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */ | ||
| // "isolatedModules": true /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */, | ||
|
|
@@ -42,9 +44,9 @@ | |
| /* Module Resolution Options */ | ||
| "moduleResolution": "node" /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */, | ||
| "baseUrl": "./" /* Base directory to resolve non-absolute module names. */, | ||
| "paths": { | ||
| "*": ["*", "types/*"] | ||
| } /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */, | ||
| // "paths": { | ||
timdorr marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| // "*": ["*", "types/*"] | ||
| // } /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */, | ||
| // "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */ | ||
| // "typeRoots": [], /* List of folders to include type definitions from. */ | ||
| // "types": [], /* Type declaration files to be included in compilation. */ | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.