【发布时间】:2021-11-15 04:52:35
【问题描述】:
我收到这个错误
Cannot parse tsconfig.base.json: PropertyNameExpected in JSON at position 891
当我在 CLI 上运行 nx g @nrwl\angular:lib libName 时
我的 tsconfig.base.json
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@admin-env/*": ["apps/admin/src/environments/*"],
"@admin/*": ["apps/admin/src/app/*"],
"@portal-env/*": ["apps/portal/src/environments/*"],
"@portal/*": ["apps/portal/src/app/*"],
}
},
"exclude": ["node_modules", "tmp"]
}
当我运行时,我收到错误Cannot parse tsconfig.base.json: PropertyNameExpected in JSON at position 891。
当我尝试运行 npx nx g @nrwl/angular:lib libName 或 nx g @nrwl/angular:lib 时也会发生同样的情况
我用VScode写代码,tsconfig.base.json没有错误警告(lint)
【问题讨论】:
标签: json angular angularjs nrwl-nx nrwl