【发布时间】:2020-04-30 21:18:32
【问题描述】:
This is the error I'm having right now
这是我的 package.json
{ “名称”:“埋伏”, “版本”:“0.0.1”, “作者”:“离子框架”, "主页": "http://ionicframework.com/", “私人”:真的, “脚本”:{ "clean": "ionic-app-scripts clean", "build": "ionic-app-scripts build", "lint": "ionic-app-scripts lint", "ionic:build": "ionic-app-scripts build", “离子:服务”:“离子应用脚本服务” },
"dependencies": {
"@angular/animations": "5.2.9",
"@angular/common": "5.2.9",
"@angular/compiler": "5.2.9",
"@angular/compiler-cli": "5.2.9",
"@angular/core": "5.2.9",
"@angular/fire": "^5.3.0",
"@angular/forms": "5.2.9",
"@angular/http": "5.2.9",
"@angular/platform-browser": "5.2.9",
"@angular/platform-browser-dynamic": "5.2.9",
"@angular/router": "^3.4.10",
"@ionic-native/browser-tab": "^4.7.0",
"@ionic-native/core": "4.6.0",
"@ionic-native/diagnostic": "^4.7.0",
"@ionic-native/firebase": "^5.19.1",
"@ionic-native/geolocation": "^4.7.0",
"@ionic-native/in-app-browser": "^4.7.0",
"@ionic-native/location-accuracy": "^4.7.0",
"@ionic-native/network": "^4.7.0",
"@ionic-native/social-sharing": "^4.7.0",
"@ionic-native/splash-screen": "4.6.0",
"@ionic-native/status-bar": "4.3.1",
"@ionic/storage": "2.1.3",
"cordova-android": "8.1.0",
"cordova-plugin-browsertab": "^0.2.0",
"cordova-plugin-compat": "^1.2.0",
"cordova-plugin-device": "^2.0.1",
"cordova-plugin-firebase": "^2.0.5",
"cordova-plugin-geolocation": "^4.0.1",
"cordova-plugin-inappbrowser": "^3.2.0",
"cordova-plugin-ionic-keyboard": "^2.0.5",
"cordova-plugin-ionic-webview": "^4.1.2",
"cordova-plugin-network-information": "^2.0.1",
"cordova-plugin-request-location-accuracy": "^2.2.2",
"cordova-plugin-splashscreen": "^5.0.2",
"cordova-plugin-whitelist": "^1.3.3",
"cordova-plugin-x-socialsharing": "^5.4.0",
"cordova.plugins.diagnostic": "^4.0.5",
"es6-promise-plugin": "^4.2.2",
"firebase": "^7.6.2",
"ionic-angular": "^3.9.9",
"ionic2-rating": "^1.2.2",
"ionic2-super-tabs": "^4.2.2",
"ionicons": "3.0.0",
"pkg.json": "^2.0.7",
"rxjs": "5.5.8",
"sw-toolbox": "3.6.0",
"zone.js": "0.8.20"
},
"devDependencies": {
"@ionic/app-scripts": "^3.2.4",
"@ionic/lab": "2.0.18",
"typescript": "~3.1.3"
},
"description": "An Ionic project",
"cordova": {
"plugins": {
"cordova-plugin-network-information": {},
"cordova-plugin-geolocation": {},
"cordova-plugin-whitelist": {},
"cordova-plugin-device": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-ionic-webview": {
"ANDROID_SUPPORT_ANNOTATIONS_VERSION": "27.+"
},
"cordova-plugin-ionic-keyboard": {},
"cordova.plugins.diagnostic": {
"ANDROID_SUPPORT_VERSION": "28.+"
},
"cordova-plugin-request-location-accuracy": {
"PLAY_SERVICES_LOCATION_VERSION": "16.+"
},
"cordova-plugin-x-socialsharing": {
"ANDROID_SUPPORT_V4_VERSION": "24.1.1+"
},
"cordova-plugin-browsertab": {},
"cordova-plugin-inappbrowser": {},
"cordova-plugin-firebase": {}
},
"platforms": [
"android"
]
}
}
这是它所指的代码
export type CustomEventName<T> = T extends EventNameString ? never : T;
这是我的 tsconfig.json
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [
"dom",
"es2015"
],
"module": "es2015",
"moduleResolution": "node",
"sourceMap": true,
"target": "es5"
},
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules",
"src/**/*.spec.ts",
"src/**/__tests__/*.ts"
],
"compileOnSave": false,
"atom": {
"rewriteTsconfig": false
}
}
P.S 如果我保存一个文件,它将被修复
提前谢谢各位!
编辑:
after following sir john's advice, only one error is now left.
【问题讨论】:
-
请将您的代码显示为文本而不是图像。编辑您的问题以执行此操作。谢谢
-
先生,我真的不知道我应该在这里放什么代码。因为如果我保存文件然后刷新页面,它将被修复。
-
请在此处填写您的
tsconfig.json -
先生,@JohnVelasquez 我已经说过了
标签: android angular typescript ionic3