tsconfig.json
我的项目根目录有一个文件:
{
"compilerOptions": {
"target": "ES5",
"module": "commonjs",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true,
"noEmitHelpers": true,
"baseUrl": ".",
"paths": {
"services/*": ["./src/app/shared/services/*"]
}
},
"compileOnSave": false,
"buildOnSave": false,
"awesomeTypescriptLoaderOptions": {
"forkChecker": true,
"useWebpackText": true
}
}
我正在尝试定义我的路径,因此我们不需要在项目中使用相对路径。
例如:
我正在努力import { ConfigService } from 'services/config';
工作,而不必输入:
import { ConfigService } from '../../shared/services/config/';
但是当我尝试这个时,我总是在 webpack 中遇到错误。
看起来它只是试图查看/node_nodules
并忽略tsconfig.json
? 我对吗?
我真的不知道我做错了什么。谷歌搜索了几个多小时,我快疯了。
任何帮助,将不胜感激。