Поиск…


Синтаксис

  • Использует формат файла JSON
  • Также можно принять комментарии к стилю JavaScript

замечания

обзор

Наличие файла tsconfig.json в каталоге указывает, что каталог является корнем проекта TypeScript. Файл tsconfig.json указывает корневые файлы и параметры компилятора, необходимые для компиляции проекта.

Использование tsconfig.json

  • Вызов tsc без входных файлов, и в этом случае компилятор ищет файл tsconfig.json, начиная с текущего каталога и продолжая цепочку родительских каталогов.
  • Вызов tsc без входных файлов и параметр командной строки --project (или просто -p), который указывает путь к каталогу, содержащему файл tsconfig.json. Когда входные файлы указаны в командной строке, файлы tsconfig.json

подробности

Свойство "compilerOptions" может быть опущено, и в этом случае используются значения по умолчанию для компилятора. См. Наш полный список поддерживаемых параметров компилятора .

Если в файле tsconfig.json нет свойства "files" , то компилятор по умолчанию включает все файлы TypeScript (* .ts или * .tsx) в содержащую директорию и подкаталоги. Когда присутствует свойство «files», включаются только указанные файлы.

Если указано свойство "exclude" , компилятор включает все файлы TypeScript (* .ts или * .tsx) в содержащую директорию и подкаталоги, за исключением тех файлов или папок, которые исключены.

Свойство "files" не может использоваться в сочетании с свойством «исключить». Если оба они указаны, свойство «файлы» имеет приоритет.

Любые файлы, на которые ссылаются те, которые указаны в свойстве "files" , также включены. Аналогично, если файл B.ts ссылается на другой файл A.ts, то нельзя исключить B.ts, за исключением случаев, когда ссылочный файл A.ts также указан в списке «исключить».

Файл tsconfig.json разрешен полностью пустым, который компилирует все файлы в каталоге и подкаталогах с параметрами компилятора по умолчанию.

Параметры компилятора, указанные в командной строке, переопределяют параметры, указанные в файле tsconfig.json.

схема

Схему можно найти по адресу: http://json.schemastore.org/tsconfig

Создайте проект TypeScript с помощью tsconfig.json

Наличие файла 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 сигнализирует IDE для генерации всех файлов для данного 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.
  }
}

Недостаточно? Если вы жесткий кодер и хотите больше, вам может быть интересно проверить ваши файлы TypeScript с помощью tslint перед компиляцией с помощью tsc. Проверьте, как настроить tslint для еще более строгих правил .

preserveConstEnums

Typcript поддерживает список транзакций costant, объявленный через const enum .

Обычно это просто синтаксический сахар, поскольку перечисления costant встроены в скомпилированный JavaScript.

Например, следующий код

const enum Tristate {
    True,
    False,
    Unknown
}

var something = Tristate.True;

компилируется

var something = 0;

Хотя в пользу Perfomance от встраивания, вы можете предпочесть держать перечисления , даже если Костант (то есть: вы можете читаемость на разрабатываемом коде), чтобы сделать это , вы должны установить в tsconfig.json в preserveConstEnums clausole в compilerOptions к 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