我正在运行VS Code,目前正在尝试在我的打字稿项目中设置一些别名。
我的开发人员设置位于nodemon和ts-node上,代码被编译到dist文件夹中。
到目前为止,我成功获得Typescript Hero来使用别名管理导入:
到目前为止,我的文件夹结构是:
.
└─┬ src
├──modules
├────Category
├────Ressource
├──shared
├────debug
// tsconfig.json
{
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node",
"pretty": true,
"sourceMap": true,
"target": "es6",
"outDir": "./dist",
"baseUrl": "./src",
"paths": {
"@shared/*": [
"shared/*"
],
"@modules/*": [
"modules/*"
]
},
"resolveJsonModule": true,
"esModuleInterop": true
},
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules",
"**/*.spec.ts",
"**/*.test.ts",
]
}
这是第一个别名导入失败。
//Server.ts file
import Print from '@shared/debug/Print.class';
import App from './App';
const MyApp: App = new App();
MyApp.ExpressApp.listen(MyApp.Config.ExpressPort, () => {
Print.Log('Express server listening on port ' + MyApp.Config.ExpressPort);
});
但是,我得到一个错误:“在跨环境NODE_ENV =开发节点在ts-node ./src/server上找不到模块'@ shared / debug / Print.class'” 。 ts”。
这就是我的立场。
现在,我已经阅读了一些关于SO的问答,而且看来,即使我设法使别名在dev中工作时也可以正常使用,但由于我从Typescript src文件夹运行而我的可交付成果内置dist吗?如果是这样,有什么办法可以补救?非常感谢
答案 0 :(得分:8)
问题出在运行时的节点路径别名解析上。即使打字稿是由ts-node在运行时执行的,别名也无法按原样解析。 (我认为)
但这只是冰山一角。 我稍后会在jest设置中和JS运行时遇到它。
对于每一次运行时,我都必须找到一种方法来解释我的别名。有一些npm软件包,但是很多需要更多的声明。
我不想在我拥有的每个配置文件中声明别名,而只依赖于tsconfig文件。
经过大量测试,仅安装了两个节点模块tsconfig-paths以便在ts节点上执行打字稿运行时。 然后@ef-carbon/tspm将我的别名转换为构建目标。
npm i -D tsconfig-paths @ef-carbon/tspm
对于ts节点,脚本被修改为:
ts-node -r tsconfig-paths/register ./src/server.ts
对于已编译的js,只需运行:
ef-tspm
就开玩笑而言,ts-jest是必需的,我已经有了它,但是没有正确配置。 我使用内置的助手来设置我的路径。 我的笑话配置文件现在看起来像这样:
//jest.config.js
const { pathsToModuleNameMapper } = require('ts-jest/utils');
const { compilerOptions } = require('./tsconfig');
module.exports = {
roots: ['<rootDir>/src'],
globals: {
'ts-jest': {
tsConfig: 'tsconfig.json',
diagnostics: {
warnOnly: true,
},
},
},
clearMocks: true,
coverageDirectory: 'coverage',
testRegex: '(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$',
moduleFileExtensions: ['js', 'json', 'jsx', 'node', 'ts', 'tsx'],
testEnvironment: 'node',
moduleNameMapper: pathsToModuleNameMapper(compilerOptions.paths, { prefix: '<rootDir>/src/' }),
pathToJest: 'npm test',
preset: 'ts-jest',
testMatch: null,
};
这是我的脚本在package.json中的样子
"scripts": {
"dev:ts": "cross-env NODE_ENV=development nodemon",
"dev:js": "cross-env NODE_ENV=development npm run start:js",
"staging": "cross-env NODE_ENV=staging npm run start:js",
"production": "cross-env NODE_ENV=production npm run start:js",
"test": "cross-env NODE_ENV=testing jest --runInBand",
"test:debug": "npm run test --detectOpenHandles",
"start:js": "npm run build && nodemon --config nodemon-js.json",
"build": "npm run compile && npm run post:compile && npm run copyAssets",
"compile": "tsc",
"post:compile": "ef-tspm",
"copyAssets": "copyfiles -e ./src/**/*.ts -e ./src/**/*sample* -e ./src/**/*.json -u 1 ./src/**/* ./dist/"
},
看看进展如何,之后我可能会添加一个咕solution咕gu的解决方案。但是就目前而言,这已经足够了。