11

我有一个src/assets/version.json包含以下内容的 json 文件:

{"VERSION":"1.0.0"}

我将文件导入到*.ts,例如:

import * as VersionInfo from 'src/assets/version.json';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.scss']
})
export class AppComponent {

 constructor() {
   console.log(`version ${VersionInfo['VERSION']}`);
 }

}

输出

version 1.0.0

这适用于 Angular 11,但在 Angular 12 上,CLI 显示错误

Should not import the named export 'VERSION' (imported as 'VersionInfo') from default-exporting module (only default export is available soon)

这是我的 tsconfig.base.json

{
  "compileOnSave": false,
  "compilerOptions": {
    "forceConsistentCasingInFileNames": true,
    "noFallthroughCasesInSwitch": true,
    "strictPropertyInitialization": false,
    "baseUrl": "./",
    "importHelpers": true,
    "outDir": "./dist/out-tsc",
    "sourceMap": true,
    "declaration": false,
    "module": "esnext",
    "moduleResolution": "node",
    "experimentalDecorators": true,
    "noImplicitAny": false,
    "target": "es2015",
    "resolveJsonModule": true,
    "typeRoots": [
      "node_modules/@types"
    ],
    "lib": [
      "es2018",
      "dom"
    ],
    "paths": {
      "jszip": [
        "node_modules/jszip/dist/jszip.min.js"
      ]
    }
  },
  "angularCompilerOptions": {
    "fullTemplateTypeCheck": true,
    "strictTemplates": true,
    "strictInjectionParameters": true
  },
}

如何修复此错误?

4

3 回答 3

15

以下应放在tsconfig.json

{
 ...
 "compilerOptions": {
    ...
    "resolveJsonModule": true, //already there
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true // Add this line
    ...
   },
...
}

然后只需在您的组件中导入以下内容

import VersionInfo from 'src/assets/version.json';
于 2021-05-17T17:56:21.200 回答
6

import { default as VersionInfo } from 'src/assets/version.json';

您还需要上面提到的两个 tsconfig 条目。

于 2021-05-17T22:17:10.807 回答
5

您可以尝试tsconfig.json如下:

"compilerOptions": { "allowSyntheticDefaultImports":true }

并导入:

import VersionInfo from 'src/assets/version.json';
于 2021-05-17T16:53:35.407 回答