zoukankan      html  css  js  c++  java
  • tsconfig.json No inputs were found in config file

    Build:No inputs were found in config file '/tsconfig.json'. Specified 'include' paths were '["**/*"]' and 'exclude' paths were '["../wwwroot/app","node_modules/*"]'

    解决方案,其实只要在 include目录中,任意新增一个ts文件即可通过编译。

    tsconfig.json 如下:

    {
      "compilerOptions": {
        "noImplicitAny": false,
        "noEmitOnError": true,
        "removeComments": false,
        "sourceMap": true,
        "target": "es5"
      },
      "include": [
        "src/**/*"
      ],
      "exclude": [
        "node_modules",
        "wwwroot"
      ]
    }
    View Code
  • 相关阅读:
    魔法跳舞链 51Nod
    反射
    JDBC---后端服务器与数据库交互的桥梁
    多线程
    IO流
    继承与重写
    java.util包
    多态
    Java.lang包
    异常
  • 原文地址:https://www.cnblogs.com/shuzhenyu/p/6584489.html
Copyright © 2011-2022 走看看