我无法在项目中使用我自己的 ionic 2 项目之外的打字稿文件。我有一个我想使用的身份验证模块,但它无法正常工作。我不确定这是否是打字稿设置或离子的问题。
app.module.ts
import { NgModule } from '@angular/core';
import {IonicApp, IonicModule} from 'ionic-angular';
import { MyApp } from './app.component';
import { LoginComponent } from './login/login.component';
import {AuthModule} from "../../../web/src/shared/services/auth/auth.module";
@NgModule({
declarations: [
MyApp,
LoginComponent
],
imports: [
IonicModule.forRoot(MyApp),
AuthModule
],
bootstrap: [IonicApp],
entryComponents: [
MyApp,
LoginComponent
],
providers: [
]
})
export class AppModule {}
tsconfig.json
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"declaration": true,
"target": "es5",
"module": "es2015",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": ["dom", "es2015"]
},
"exclude": ["node_modules"],
"compileOnSave": false,
"atom": { "rewriteTsconfig": false }
}
auth.module.ts
import {NgModule} from "@angular/core";
import {HttpModule} from "@angular/http";
import {IdentityService} from "./identity.service";
import {IdentityEventService} from "./identity-event.service";
@NgModule({
imports: [HttpModule],
providers: [
IdentityService,
IdentityEventService
]
})
export class AuthModule {
}
我收到以下错误:
[14:34:24] 捆绑失败:在 ..../web/src/shared/services/auth/auth.module.ts 中出现意外字符“@”(5:0)
所以看起来好像它正在寻找包,但在 NgModule 声明中窒息。如果我删除对 的引用auth.module
,它会起作用。我已将 auth 模块所需的所有包添加到我的 ionic 项目的 package.json 文件中,因此引用不应该成为问题。
让我知道是否需要更多相关信息来调试它。