【问题标题】:Consume `index.d.ts` declaration file in source code在源代码中使用 `index.d.ts` 声明文件
【发布时间】:2020-10-02 16:30:11
【问题描述】:

在我的项目中将普通的.js 文件移植到.ts 时,我想重用index.d.ts 中的类型定义。但是我得到Cannot find name 'Type'

我觉得这是我遇到的一些配置问题。 任何帮助,非常感谢 - 谢谢。

文件夹结构如下所示

<root>
  - /javascript (all js files)
  index.d.ts    (declarations)

这是我当前的 tsconfig.json

{
  "compilerOptions": {
    /* Basic Options */
    "target": "es2017",                       /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */
    "module": "commonjs",                     /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
    "lib": [ "es2017" ],                      /* Specify library files to be included in the compilation. */
    "allowJs": true,                          /* Allow javascript files to be compiled. */
    // "checkJs": true,                       /* Report errors in .js files. */
    "jsx": "react-native",                    /* 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. */
    // "sourceMap": true,                     /* Generates corresponding '.map' file. */
    // "outFile": "./",                       /* Concatenate and emit output to single file. */
    // "outDir": "./",                        /* 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": true,                /* Do not emit comments to output. */
    "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'). */

    /* Strict Type-Checking Options */
    "strict": true,                           /* Enable all strict type-checking options. */
    // "noImplicitAny": true,                 /* Raise error on expressions and declarations with an implied 'any' type. */
    // "strictNullChecks": true,              /* Enable strict null checks. */
    // "strictFunctionTypes": true,           /* Enable strict checking of function types. */
    // "strictBindCallApply": true,           /* Enable strict 'bind', 'call', and 'apply' methods on functions. */
    // "strictPropertyInitialization": true,  /* Enable strict checking of property initialization in classes. */
    // "noImplicitThis": true,                /* Raise error on 'this' expressions with an implied 'any' type. */
    // "alwaysStrict": true,                  /* Parse in strict mode and emit "use strict" for each source file. */
    "skipLibCheck": true,                     /* Skip type checking of all declaration files (*.d.ts). */

    /* Additional Checks */
    "forceConsistentCasingInFileNames": true,
    // "noUnusedLocals": true,                /* Report errors on unused locals. */
    // "noUnusedParameters": true,            /* Report errors on unused parameters. */
    // "noImplicitReturns": true,             /* Report error when not all code paths in function return a value. */
    // "noFallthroughCasesInSwitch": true,    /* Report errors for fallthrough cases in switch statement. */

    /* Module Resolution Options */
    "moduleResolution": "node",               /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
    "baseUrl": "./javascript",                /* Base directory to resolve non-absolute module names. */
    // "paths": {},                           /* 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. */
    "allowSyntheticDefaultImports": true,     /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
    "esModuleInterop": true,                  /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
    "resolveJsonModule": true,
    // "preserveSymlinks": true,              /* Do not resolve the real path of symlinks. */

    /* Source Map Options */
    // "sourceRoot": "",                      /* Specify the location where debugger should locate TypeScript files instead of source locations. */
    // "mapRoot": "",                         /* Specify the location where debugger should locate map files instead of generated locations. */
    // "inlineSourceMap": true,               /* Emit a single file with source maps instead of having a separate file. */
    // "inlineSources": true,                 /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */

    /* Experimental Options */
    // "experimentalDecorators": true,        /* Enables experimental support for ES7 decorators. */
    // "emitDecoratorMetadata": true,         /* Enables experimental support for emitting type metadata for decorators. */
  }
}

【问题讨论】:

  • 请提供一个产生错误的最小示例。
  • 请注意,这是一个已发布的 JS 库。人们在他们的 TS 项目中使用它。我想将其从 JS 转换为 TS 本身 - 只是为了澄清。
  • 它应该可以正常工作。它可能与 index.d.ts 的编写方式或引用方式有关。它是什么图书馆?

标签: javascript typescript react-native


【解决方案1】:

您的模块分辨率似乎有冲突。

如果您有一个名为index.ts 的文件,则不会自动导入index.d.ts

TypeScript 将自动导入 .d.ts 文件,除非它们的名称与其他文件发生冲突,此处对哪些文件将发生冲突的规则有所描述:https://www.typescriptlang.org/docs/handbook/module-resolution.html

所以 import { b } from "moduleB" in source file /root/src/moduleA.ts 将导致以下查找:

/root/src/node_modules/moduleB.ts
/root/src/node_modules/moduleB.tsx
/root/src/node_modules/moduleB.d.ts
/root/src/node_modules/moduleB/package.json (if it specifies a "types" property)
/root/src/node_modules/@types/moduleB.d.ts
/root/src/node_modules/moduleB/index.ts
/root/src/node_modules/moduleB/index.tsx
/root/src/node_modules/moduleB/index.d.ts```

解决方案是将您的 index.d.ts 文件重命名为其他名称,我推荐您的项目名称(只要没有与该名称冲突的 .ts 文件!)。

【讨论】:

    【解决方案2】:

    在 JavaScript 项目中,您必须自己维护 index.d.ts,但是一旦项目在 TypeScript 中转换(并且 declaration 选项在您的 tsconfig.json 中未注释)index.d.ts 由 tsc 生成。拥有一个带有自我维护 index.d.ts 的 TypeScript 项目听起来不是一个好主意。

    您可能只需要转换您的项目并维护相同的导出接口。

    要实现这一点,您只需在转换后的 TypeScript 文件中使用 index.d.ts 中的相同声明(剪切和粘贴声明并使用定义丰富它们)。

    让我们来测试一个简单的 JavaScript 包:

    function charcatersCount(str) {
      return str.length;
    }
    
    module.exports = { charactersCount };
    

    手动维护的index.d.ts 文件将如下所示:

    export declare function charactersCount(str: string): number;
    

    我的建议是打开一个新创建的index.ts 文件,剪切并粘贴声明并将它们从声明更改为定义

    export function charactersCount(str: string): number {}
    

    最后用实际定义丰富它们:

    export function charactersCount(str: string): number {
      return str.length;
    }
    

    为每个导出的函数/类/常量/变量重复此操作。

    现在运行带有declaration 选项的tsc(命令行中的--declaration,或tsconfig.json 文件中的"declaration": true,)将生成一个index.js 文件(编译后的版本)和一个index.d.ts 文件(声明文件)或多或少与源文件相同。

    从现在开始,您将不再需要在每次更改包时手动维护您的 index.d.ts 文件,因为 tsc 会生成它。

    关于具体错误Cannot find name 'Type',我需要查看生成它的代码。

    希望这会有所帮助。

    【讨论】:

    • 你能否改写你的答案,我不明白。 > 要实现这一点,您只需在转换后的 TypeScript 文件中使用您现在在 index.d.ts 中的相同声明(剪切和粘贴声明并使用定义丰富它们)。所以我必须将我在index.d.ts 中设置的类型复制粘贴到TS 文件或types 文件夹中才能在我的新JS-> TS 源文件中使用它们?为什么我不能直接利用已经设置好的index.d.ts,这似乎是短视...
    • 感谢您的详细回答 - 简而言之,我无法重新使用已创建的 index.d.ts 文件。我会尝试您推荐的方法并报告结果。 Cannot find name 'Type' 然后可能会来,因为它无法从当前的index.d.ts 中找到类型...
    • 您实际上可以,但恕我直言,这不是一个好主意。关于错误,它可能如你所想,但我很确定如果把事情做好,它根本不会发生。
    • 我真的觉得这应该是公认的答案。你说你将普通的.js 移植到.ts。因此,只有将 .d.ts 中的所有内容移植到新创建的 .ts 文件并与您的 js 代码合并才有意义。你可能想要这个.d.ts 的唯一原因是你只转换了一些 js 文件。在这种情况下,您可能希望使用命名空间来合并您生成的 .d.ts 并手动维护一个。
    • 我不知道为什么,但我真的觉得这应该是公认的答案。 :D 除了笑话,谢谢@MaximMazurok
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2018-05-14
    • 2020-05-18
    • 2014-09-03
    • 2020-09-04
    • 2012-12-31
    • 2022-01-23
    • 2018-02-01
    相关资源
    最近更新 更多