TypeScript
tsconfig.json
Sök…
Syntax
- Använder JSON-filformat
- Kan också acceptera JavaScript-stilkommentarer
Anmärkningar
Översikt
Närvaron av en tsconfig.json-fil i en katalog indikerar att katalogen är roten till ett TypeScript-projekt. Tsconfig.json-filen anger rotfilerna och kompilatoralternativen som krävs för att kompilera projektet.
Använda tsconfig.json
- Genom att åberopa tsc utan inmatningsfiler, i vilket fall söker kompilatorn efter tsconfig.json-filen som börjar i den aktuella katalogen och fortsätter upp den överordnade katalogkedjan.
- Genom att åberopa tsc utan inmatningsfiler och ett - projekt (eller bara -p) kommandoradsalternativ som specificerar sökvägen för en katalog som innehåller en tsconfig.json-fil. När ingångsfiler anges på kommandoraden, är tsconfig.json-filer
detaljer
Egenskapen "compilerOptions"
kan utelämnas, i vilket fall kompilatorns standardvärden används. Se vår fullständiga lista över kompilatoralternativ som stöds.
Om det inte finns någon "files"
-egenskap i en tsconfig.json, är kompilatorn standard att inkludera alla TypeScript-filer (* .ts eller * .tsx) i den katalog som innehåller underkataloger. När en "filer" -egenskap finns, ingår bara de angivna filerna.
Om egenskapen "exclude"
anges inkluderar kompilatorn alla TypeScript-filer (* .ts eller * .tsx) i den innehållande katalogen och underkatalogerna förutom de filer eller mappar som är uteslutna.
Egenskapen "files"
kan inte användas i anslutning till egenskapen "utesluta". Om båda anges har egenskapen "filer" företräde.
Alla filer som refereras av de som anges i egenskapen "files"
ingår också. På liknande sätt, om en fil B.ts hänvisas till av en annan fil A.ts, kan B.ts inte uteslutas om referensfilen A.ts också anges i listan "uteslut".
En tsconfig.json
fil tillåts vara helt tom, vilket sammanställer alla filer i den katalog som innehåller underkataloger med standardkompileringsalternativen.
Kompilatoralternativ som anges på kommandoraden åsidosätter de som anges i tsconfig.json-filen.
schema
Schema finns på: http://json.schemastore.org/tsconfig
Skapa TypeScript-projekt med tsconfig.json
Närvaron av en tsconfig.json- fil indikerar att den aktuella katalogen är roten till ett TypeScript-aktiverat projekt.
Att initiera ett TypeScript-projekt, eller bättre sätta tsconfig.json-fil, kan göras genom följande kommando:
tsc --init
Från TypeScript v2.3.0 och högre skapar detta följande tsconfig.json som standard:
{
"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. */
}
}
De flesta, om inte alla, alternativ genereras automatiskt med bara de bara nödvändigheterna som är okommenterade.
Äldre versioner av TypeScript, till exempel v2.0.x och lägre, skulle generera en tsconfig.json så här:
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"noImplicitAny": false,
"sourceMap": false
}
}
compileOnSave
Ställa in en toppnivåegenskap compileOnSave
signaler till IDE för att generera alla filer för en given tsconfig.json vid sparande.
{
"compileOnSave": true,
"compilerOptions": {
...
},
"exclude": [
...
]
}
Denna funktion är tillgänglig sedan TypeScript 1.8.4 och framåt, men måste stöds direkt av IDE: er. För närvarande är exempel på stödda IDE:
- Visual Studio 2015 med uppdatering 3
- JetBrains WebStorm
- Atom med atom-typskript
kommentarer
En tsconfig.json-fil kan innehålla både rad- och blockkommentarer med samma regler som 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 */
Konfiguration för färre programmeringsfel
Det finns väldigt bra konfigurationer för att tvinga typ och få fler användbara fel som inte aktiveras som standard.
{
"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.
}
}
Inte tillräckligt? Om du är en hård kodare och vill ha mer kan du vara intresserad av att kontrollera dina TypeScript-filer med tslint innan du sammanställer dem med tsc. Kontrollera hur du konfigurerar tslint för ännu strängare kod .
preserveConstEnums
Typskript stöder kostnadsberäknade siffror, deklarerade genom const enum
.
Detta är vanligtvis bara syntaxsocker eftersom de kostnadsberättigade inumsna anges i sammanställd JavaScript.
Till exempel följande kod
const enum Tristate {
True,
False,
Unknown
}
var something = Tristate.True;
sammanställs till
var something = 0;
Även om perfomance drar nytta av inline, kanske du föredrar att hålla enums även om kostnadsberättigande (dvs: du kanske vill ha läsbarhet på utvecklingskod), för att göra detta måste du ställa in tsconfig.json preserveConstEnums
klausulen i compilerOptions
till true
.
{
"compilerOptions": {
"preserveConstEnums" = true,
...
},
"exclude": [
...
]
}
På detta sätt skulle det föregående exemplet sammanställas som alla andra enums, som visas i följande utdrag.
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