我制作了一个我在npm发布的打字稿模块,但是我无法让intellisens工作。
文件结构就是这样
dist
index.js
+ others
src
index.ts
+ others
package.json
tsconfig.json
src
包含.ts
个文件,与.js
,.d.ts
,.js.map
分开。
如果我这样做:
import { X } from 'my-package';
它会起作用,没有错误,但没有智能,消息是the type definition is not found
。
但是,如果我这样做:
import { X } from 'my-package/dist';
我确实得到了智慧。
在package.json中,我把:
"main": "dist/index.js",
这是我的tsconfig:
{
"compilerOptions": {
/* Basic Options */
"target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', or 'ESNEXT'. */
"module": "commonjs", /* Specify module code generation: 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
"declaration": true, /* Generates corresponding '.d.ts' file. */
"sourceMap": true, /* Generates corresponding '.map' file. */
"outDir": "./dist", /* Redirect output structure to the directory. */
"rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
"removeComments": false, /* Do not emit comments to output. */
"strict": true, /* Enable all strict type-checking options. */
"sourceRoot": "./dist", /* Specify the location where debugger should locate TypeScript files instead of source locations. */
"mapRoot": "./dist" /* Specify the location where debugger should locate map files instead of generated locations. */
},"exclude": [
"test/**"
]
}
答案 0 :(得分:2)
您需要单独引用.d.ts
文件。请参阅TypeScript手册中的publishing部分。
在package.json
:
{
"name": "awesome",
"author": "me",
"version": "1.0.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts"
}
请注意types
键,其值指向index.d.ts
文件。