zoukankan      html  css  js  c++  java
  • 6.tsconfig

       

    tsc -w 监视

    {
      //指定哪些文件需要被编译
      // * 表示任意文件 **表示任意目录
      "include": [
        "./ts/*"
      ],
    
      //不包含
      //"exclude": [],
    
      //设置编译指定文件
      //"files": [],
    
    
      //编译器设置
      //"编译选项" www.tslang.cn/docs/handbook/compiler-options.html
      "compilerOptions": {
    
        //被编译成es的版本
        "target": "ES2016",
    
        //使用模块化规范
        "module": "ES2015",
    
        //项目中使用的库,一般默认
        //"lib": []
    
        //编译后的路径
        "outDir": "./dist",
    
        //合并为一个文件,模块化规范需要使用amd 或者system
        //"outFile": "./dist/app.js"
    
        //是否对js文件编译,默认false
        "allowJs": false,
    
        //检查js代码是否符合规范,默认false
        "checkJs": false,
    
        //是否移除注释
        "removeComments": true,
    
        //不生成编译后文件,默认false
        "noEmit": false,
    
        //有错误时不生成编译文件
        "noEmitOnError": false,
    
        //严格模式
        "alwaysStrict": false
    
      }
    }
  • 相关阅读:
    L1-021 重要的话说三遍
    L1-020 帅到没朋友
    pytest--钩子
    pytest--allure
    pytest--常用插件
    pytest--高级用法
    pytest--配置文件
    pytest--控制运行
    pytest--fixture
    pytest--使用前提
  • 原文地址:https://www.cnblogs.com/buchizaodian/p/14746732.html
Copyright © 2011-2022 走看看