从js访问时ts文件未编译

时间:2019-11-11 05:36:13

标签: javascript node.js typescript

我写了graphql API,其中包括FHIR标准。我已经决定使用Typescript语言编写API,但问题是FHIR模式,我没有使用Typescript的好例子,因此我从“ https://github.com/Asymmetrik/graphql-fhir”获得了具有FHIR标准的graphql API的模式代码和基础设置。我可以使用唯一的JavaScript,但是在我的由打字稿设计的架构师中,因此我必须将业务逻辑写入打字稿中。   这里的问题是ts文件未编译,它抛出了enter image description here

tsconfig.json:

// tsconfig.json
{
    "compilerOptions": {
        "module": "commonjs",
        "moduleResolution": "node",
        "pretty": true,
        "sourceMap": true,
        "target": "es2016",
        "outDir": "./dist",
        "allowJs": true,
        "baseUrl": "src",
        "esModuleInterop": true
    },
    "include": [
        "src/**/*"
    ],
    "exclude": [
        "node_modules"
    ]
}

0 个答案:

没有答案