サーチ…


構文

  • JSONファイル形式を使用する
  • JavaScriptスタイルコメントも受け入れることができます

備考

概要

ディレクトリにtsconfig.jsonファイルが存在することは、そのディレクトリがTypeScriptプロジェクトのルートであることを示します。 tsconfig.jsonファイルは、プロジェクトをコンパイルするために必要なルートファイルとコンパイラオプションを指定します。

tsconfig.jsonの使用

  • 入力ファイルなしでtscを呼び出すと、コンパイラはカレントディレクトリからtsconfig.jsonファイルを検索し、親ディレクトリチェーンを継続して検索します。
  • 入力ファイルがないtscと、tsconfig.jsonファイルを含むディレクトリのパスを指定する--project(または単に-p)コマンドラインオプションを呼び出すことによって、コマンドラインで入力ファイルを指定すると、tsconfig.jsonファイルは次のようになります。

詳細

"compilerOptions"プロパティは省略できます。この場合、コンパイラのデフォルトが使用されます。サポートされているコンパイラオプションの一覧をご覧ください。

tsconfig.jsonに"files"プロパティが存在しない場合、コンパイラはデフォルトで、すべてのTypeScript(* .tsまたは* .tsx)ファイルを含むディレクトリとサブディレクトリに含めます。 「ファイル」プロパティが存在する場合、指定されたファイルのみが含まれます。

"exclude"プロパティが指定されている場合、コンパイラは、除外されるファイルまたはフォルダを除くすべてのTypeScript(* .tsまたは* .tsx)ファイルを含むディレクトリおよびサブディレクトリに含めます。

"files"プロパティは、「除外」プロパティと共に使用することはできません。両方が指定されている場合は、「ファイル」プロパティが優先されます。

"files"プロパティで指定された"files"によって参照される"files"も含まれます。同様に、ファイルB.tsが別のファイルA.tsによって参照される場合、参照ファイルA.tsが「除外」リストにも指定されていない限り、B.tsを除外することはできません。

tsconfig.jsonファイルは完全に空であることが許可されています。このファイルは、含まれているディレクトリとサブディレクトリ内のすべてのファイルをデフォルトのコンパイラオプションでコンパイルします。

コマンドラインで指定されたコンパイラオプションは、tsconfig.jsonファイルで指定されたオプションを上書きします。

スキーマ

スキーマはhttp://json.schemastore.org/tsconfigにあります。

tsconfig.jsonを使用してTypeScriptプロジェクトを作成する

tsconfig.jsonファイルが存在することは、現在のディレクトリがTypeScript対応プロジェクトのルートであることを示します。

TypeScriptプロジェクトを初期化するか、tsconfig.jsonファイルを置くのが良いかは、次のコマンドで行います。

tsc --init

TypeScript v2.3.0以降では、デフォルトで次のtsconfig.jsonが作成されます。

{
  "compilerOptions": {
    /* Basic Options */                       
    "target": "es5",                          /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', or 'ESNEXT'. */
    "module": "commonjs",                     /* Specify module code generation: 'commonjs', 'amd', 'system', 'umd' or 'es2015'. */
    // "lib": [],                             /* Specify library files to be included in the compilation:  */
    // "allowJs": true,                       /* Allow javascript files to be compiled. */
    // "checkJs": true,                       /* Report errors in .js files. */
    // "jsx": "preserve",                     /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
    // "declaration": true,                   /* Generates corresponding '.d.ts' file. */
    // "sourceMap": true,                     /* Generates corresponding '.map' file. */
    // "outFile": "./",                       /* Concatenate and emit output to single file. */
    // "outDir": "./",                        /* Redirect output structure to the directory. */
    // "rootDir": "./",                       /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
    // "removeComments": true,                /* Do not emit comments to output. */
    // "noEmit": true,                        /* Do not emit outputs. */
    // "importHelpers": true,                 /* Import emit helpers from 'tslib'. */
    // "downlevelIteration": true,            /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
    // "isolatedModules": true,               /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */
                                              
    /* Strict Type-Checking Options */        
    "strict": true                            /* Enable all strict type-checking options. */
    // "noImplicitAny": true,                 /* Raise error on expressions and declarations with an implied 'any' type. */
    // "strictNullChecks": true,              /* Enable strict null checks. */
    // "noImplicitThis": true,                /* Raise error on 'this' expressions with an implied 'any' type. */
    // "alwaysStrict": true,                  /* Parse in strict mode and emit "use strict" for each source file. */
                                              
    /* Additional Checks */                   
    // "noUnusedLocals": true,                /* Report errors on unused locals. */
    // "noUnusedParameters": true,            /* Report errors on unused parameters. */
    // "noImplicitReturns": true,             /* Report error when not all code paths in function return a value. */
    // "noFallthroughCasesInSwitch": true,    /* Report errors for fallthrough cases in switch statement. */
                                              
    /* Module Resolution Options */           
    // "moduleResolution": "node",            /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
    // "baseUrl": "./",                       /* Base directory to resolve non-absolute module names. */
    // "paths": {},                           /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
    // "rootDirs": [],                        /* List of root folders whose combined content represents the structure of the project at runtime. */
    // "typeRoots": [],                       /* List of folders to include type definitions from. */
    // "types": [],                           /* Type declaration files to be included in compilation. */
    // "allowSyntheticDefaultImports": true,  /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
                                              
    /* Source Map Options */                  
    // "sourceRoot": "./",                    /* Specify the location where debugger should locate TypeScript files instead of source locations. */
    // "mapRoot": "./",                       /* Specify the location where debugger should locate map files instead of generated locations. */
    // "inlineSourceMap": true,               /* Emit a single file with source maps instead of having a separate file. */
    // "inlineSources": true,                 /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */
                                              
    /* Experimental Options */                
    // "experimentalDecorators": true,        /* Enables experimental support for ES7 decorators. */
    // "emitDecoratorMetadata": true,         /* Enables experimental support for emitting type metadata for decorators. */
  }
}

すべてではないにしてもほとんどのオプションが自動的に生成され、裸の必需品のみがコメントアウトされます。

古いバージョンのTypeScript(例:v2.0.x以下)は、次のようにtsconfig.jsonを生成します。

{
    "compilerOptions": {
        "module": "commonjs",
        "target": "es5",
        "noImplicitAny": false,
        "sourceMap": false
    }
}

compileOnSave

最上位のプロパティcompileOnSave設定すると、保存時に特定のtsconfig.jsonのすべてのファイルが生成されます。

{
    "compileOnSave": true,
    "compilerOptions": {
        ...
    },
    "exclude": [
        ...
    ]
}

この機能はTypeScript 1.8.4以降で使用できますが、IDEで直接サポートする必要があります。現在サポートされているIDEの例は次のとおりです。

コメント

tsconfig.jsonファイルには、ECMAScriptと同じ規則を使用して行コメントとブロックコメントの両方を含めることができます。

//Leading comment
{
    "compilerOptions": {
        //this is a line comment
        "module": "commonjs", //eol line comment
        "target" /*inline block*/ : "es5",
        /* This is a
        block
        comment */
    }
}
/* trailing comment */

プログラミングエラーの少ない構成

タイピングを強制し、デフォルトでは有効化されていないより有用なエラーを得るための非常に良い設定があります。

{
  "compilerOptions": {

    "alwaysStrict": true, // Parse in strict mode and emit "use strict" for each source file. 

    // If you have wrong casing in referenced files e.g. the filename is Global.ts and you have a /// <reference path="global.ts" /> to reference this file, then this can cause to unexpected errors. Visite: http://stackoverflow.com/questions/36628612/typescript-transpiler-casing-issue
    "forceConsistentCasingInFileNames": true, // Disallow inconsistently-cased references to the same file.

    // "allowUnreachableCode": false, // Do not report errors on unreachable code. (Default: False)
    // "allowUnusedLabels": false, // Do not report errors on unused labels. (Default: False)

    "noFallthroughCasesInSwitch": true, // Report errors for fall through cases in switch statement.
    "noImplicitReturns": true, // Report error when not all code paths in function return a value.

    "noUnusedParameters": true, // Report errors on unused parameters.
    "noUnusedLocals": true, // Report errors on unused locals.

    "noImplicitAny": true, // Raise error on expressions and declarations with an implied "any" type.
    "noImplicitThis": true, // Raise error on this expressions with an implied "any" type.

    "strictNullChecks": true, // The null and undefined values are not in the domain of every type and are only assignable to themselves and any.

    // To enforce this rules, add this configuration.
    "noEmitOnError": true     // Do not emit outputs if any errors were reported.
  }
}

十分ではない?あなたがハードコーダーであり、より多くのことを望むなら、tsclを使ってコンパイルする前に、TypeScriptファイルをtslintでチェックしたいかもしれません。 さらに厳しいコードに対してtslint構成する方法を確認してください。

preserveConstEnums

Typescriptは、 const enumによって宣言されたcostant enumerablesをサポートします。

これは通常、コンパイルされたJavaScriptで原価計算列がインライン展開されるため、シンタックスシュガーとなります。

たとえば、次のコード

const enum Tristate {
    True,
    False,
    Unknown
}

var something = Tristate.True;

〜にコンパイルする

var something = 0;

パフォーマンスの向上はインライン展開のメリットがありますが、開発者コードでも読みやすいように列挙することをお勧めします。これを行うには、 tsconfig.jsonpreserveConstEnums clausoleをcompilerOptionstrueに設定する必要がありtrue

{
    "compilerOptions": {
        "preserveConstEnums" = true,
        ...
    },
    "exclude": [
        ...
    ]
}

このように、前の例は、次のスニペットに示すように、他の列挙型としてコンパイルされます。

var Tristate;
(function (Tristate) {
    Tristate[Tristate["True"] = 0] = "True";
    Tristate[Tristate["False"] = 1] = "False";
    Tristate[Tristate["Unknown"] = 2] = "Unknown";
})(Tristate || (Tristate = {}));

var something = Tristate.True


Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow