我在我的应用程序中一直使用jquery模块,到目前为止没问题。将应用程序dev导出到prod版本“ionic cordova run [platform] --prod --release
”时会触发此问题。我有以下错误。
typescript错误无法写入文件 '... / node_modules / jquery / dist / jquery.js'因为它会覆盖 输入文件。
我一直在谷歌搜索解决方案,但仍然无法找到合适的解决方案。以下是我的tsconfig.json。如果有人能帮助我,我真的很感激。谢谢!
{
“compilerOptions”: {
“allowJs”: true,
“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
}
}