https://www.typescriptlang.org/docs/handbook/tsconfig-json.html tsconfig.json说明

https://www.typescriptlang.org/docs/handbook/compiler-options.html 配置器选项说明

概述

如果一个目录下存在一个tsconfig.json文件,那么它意味着这个目录是TypeScript项目的根目录。 tsconfig.json文件中指定了用来编译这个项目的根文件和编译选项。 一个项目可以通过以下方式之一来编译:

  • 不带任何输入文件的情况下调用tsc,编译器会从当前目录开始去查找tsconfig.json文件,逐级向上搜索父目录。
  • 不带任何输入文件的情况下调用tsc,且使用命令行参数--project(或-p)指定一个包含tsconfig.json文件的目录。
  • 调用tsc 文件路径/文件名,时会忽略tsconfig.json

    使用”files”属性的例子

  1. {
  2. "compilerOptions": {
  3. "module": "commonjs",
  4. "noImplicitAny": true,
  5. "removeComments": true,
  6. "preserveConstEnums": true,
  7. "sourceMap": true
  8. },
  9. "files": [
  10. "core.ts",
  11. "sys.ts",
  12. "types.ts",
  13. "scanner.ts",
  14. "parser.ts",
  15. "utilities.ts",
  16. "binder.ts",
  17. "checker.ts",
  18. "emitter.ts",
  19. "program.ts",
  20. "commandLineParser.ts",
  21. "tsc.ts",
  22. "diagnosticInformationMap.generated.ts"
  23. ]
  24. }

使用”include”和”exclude”属性

  1. {
  2. "compilerOptions": {
  3. "module": "system",
  4. "noImplicitAny": true,
  5. "removeComments": true,
  6. "preserveConstEnums": true,
  7. "outFile": "../../built/local/tsc.js",
  8. "sourceMap": true
  9. },
  10. "include": [ // 当前目录下的src里面的所有文件
  11. "src/**/*"
  12. ],
  13. "exclude": [
  14. "node_modules",
  15. "**/*.spec.ts"
  16. ]
  17. }
  1. {
  2. "compilerOptions": {
  3. "jsx": "react", // "React""Preserve" 在.tsx文件中支持JSX
  4. "target": "es5", // 指定ECMAScript的目标版本:"ES3"(默认), "ES5""ES6"/ "ES2015""ES2016""ES2017""ESNext"
  5. "noImplicitAny": false, // 使用隐含any类型提高表达式和声明的错误。
  6. "removeComments": true, // 删除所有注释,但以复制权标题注释开头除外
  7. "emitDecoratorMetadata": true, // 在源中为装饰声明发出设计类型元数据。
  8. "experimentalDecorators": true, // ES装饰器启用实验支持。
  9. "pretty": true, // 使用颜色和上下文来设置错误和消息的样式。
  10. "baseUrl": "./src", // 用于解析非相对模块名称的基目录。
  11. /*
  12. 指定模块代码生成:"None""CommonJS""AMD""System""UMD""ES6""ES2015""ESNext"
  13. ►仅"AMD""System"可以一起使用--outFile
  14. 定位或降低时可以使用值"ES6""ES2015""ES5"
  15. target === "ES3" or "ES5" ? "CommonJS" : "ES6"
  16. */
  17. "module": "esnext",
  18. /*
  19. 确定如何解析模块 module === "AMD" or "System" or "ES6" ? "Classic" : "Node"
  20. */
  21. "moduleResolution": "node",
  22. /*
  23. 指定包含
  24. */
  25. "typeRoots": [
  26. "./node_modules/@types",
  27. "./types"
  28. ]
  29. },
  30. "exclude": [ // 不包含以下目录
  31. "node_modules",
  32. "dist"
  33. ]
  34. }

"compilerOptions"可以被忽略,这时编译器会使用默认值。

"include""exclude"属性指定一个文件glob匹配模式列表。 支持的glob通配符有:

  • * 匹配0或多个字符(不包括目录分隔符)
  • ? 匹配一个任意字符(不包括目录分隔符)
  • **/ 递归匹配任意子目录

如果一个glob模式里的某部分只包含*.*,那么仅有支持的文件扩展名类型被包含在内(比如默认.ts.tsx,和.d.ts, 如果allowJs设置能true还包含.js.jsx)。

如果"files""include"都没有被指定,编译器默认包含当前目录和子目录下所有的TypeScript文件(.ts, .d.ts.tsx),排除在"exclude"里指定的文件。JS文件(.js.jsx)也被包含进来如果allowJs被设置成true。 如果指定了 "files""include",编译器会将它们结合一并包含进来。 使用 "outDir"指定的目录下的文件永远会被编译器排除,除非你明确地使用"files"将其包含进来(这时就算用exclude指定也没用)。

使用"include"引入的文件可以使用"exclude"属性过滤。 然而,通过 "files"属性明确指定的文件却总是会被包含在内,不管"exclude"如何设置。 如果没有特殊指定, "exclude"默认情况下会排除node_modulesbower_componentsjspm_packages<outDir>目录。

任何被"files"或“include”指定的文件所引用的文件也会被包含进来。A.ts引用了B.ts,因此B.ts不能被排除,除非引用它的A.ts“exclude”`列表中。

需要注意编译器不会去引入那些可能做为输出的文件;比如,假设我们包含了index.ts,那么index.d.tsindex.js会被排除在外。 通常来讲,不推荐只有扩展名的不同来区分同目录下的文件。

tsconfig.json文件可以是个空文件,那么所有默认的文件(如上面所述)都会以默认配置选项编译。
在命令行上指定的编译选项会覆盖在tsconfig.json文件里的相应选项。

@typestypeRootstypes

默认所有可见的@types“包会在编译过程中被包含进来。 node_modules/@types文件夹下以及它们子文件夹下的所有包都是可见的; 也就是说, ./node_modules/@types/../node_modules/@types/../../node_modules/@types/等等。
如果指定了typeRoots只有typeRoots下面的包才会被包含进来。 比如:

  1. {
  2. "compilerOptions": {
  3. "typeRoots" : ["./typings"]
  4. }
  5. }

这个配置文件会包含所有./typings下面的包,而不包含./node_modules/@types里面的包。
如果指定了types,只有被列出来的包才会被包含进来。 比如:

  1. {
  2. "compilerOptions": {
  3. "types" : ["node", "lodash", "express"]
  4. }
  5. }

这个tsconfig.json文件将仅会包含 ./node_modules/@types/node./node_modules/@types/lodash./node_modules/@types/express。/@types/。 node_modules/@types/*里面的其它包不会被引入进来。
指定"types": []来禁用自动引入@types包。
注意,自动引入只在你使用了全局的声明(相反于模块)时是重要的。 如果你使用 import "foo"语句,TypeScript仍然会查找node_modulesnode_modules/@types文件夹来获取foo包。

使用extends继承配置

tsconfig.json文件可以利用extends属性从另一个配置文件里继承配置。
extendstsconfig.json文件里的顶级属性(与compilerOptionsfilesinclude,和exclude一样)。 extends的值是一个字符串,包含指向另一个要继承文件的路径。
在原文件里的配置先被加载,然后被来至继承文件里的配置重写。 如果发现循环引用,则会报错。
来至所继承配置文件的filesincludeexclude覆盖源配置文件的属性。
配置文件里的相对路径在解析时相对于它所在的文件。
比如:
configs/base.json

  1. {
  2. "compilerOptions": {
  3. "noImplicitAny": true,
  4. "strictNullChecks": true
  5. }
  6. }

tsconfig.json

  1. {
  2. "extends": "./configs/base",
  3. "files": [
  4. "main.ts",
  5. "supplemental.ts"
  6. ]
  7. }

tsconfig.nostrictnull.json

  1. {
  2. "extends": "./tsconfig",
  3. "compilerOptions": {
  4. "strictNullChecks": false
  5. }
  6. }

compileOnSave

在最顶层设置compileOnSave标记,可以让IDE在保存文件的时候根据tsconfig.json重新生成文件。

  1. {
  2. "compileOnSave": true,
  3. "compilerOptions": {
  4. "noImplicitAny" : true
  5. }
  6. }

要想支持这个特性需要Visual Studio 2015, TypeScript1.8.4以上并且安装atom-typescript插件

paths 解决 Cannot find module ‘XXX‘ or its corresponding type declarations.Vetur(2307)

  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "moduleResolution": "node",
  6. "strict": true,
  7. "jsx": "preserve",
  8. "sourceMap": true,
  9. "noImplicitAny": false,
  10. "resolveJsonModule": true,
  11. "esModuleInterop": true,
  12. "lib": ["esnext", "dom"],
  13. "typeRoots": ["./types"],
  14. "baseUrl": ".",
  15. "paths": {
  16. "@/*": [ "./*" ] // 指向当前根目录
  17. },
  18. },
  19. "include": [
  20. "src/**/*.ts",
  21. "src/**/*.d.ts",
  22. "src/**/*.tsx",
  23. "src/**/*.vue",
  24. "utils/**/*.ts",
  25. "node_modules/element-ui/packages/**/*.js"
  26. ]
  27. }