-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.base.json
43 lines (43 loc) · 4.09 KB
/
tsconfig.base.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"compilerOptions": {
/* Visit https://aka.ms/tsconfig.json to read more about this file */
// "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
// "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */
// "baseUrl": "./", /* Base directory to resolve non-absolute module names. */
// "checkJs": true, /* Report errors in .js files. */
// "composite": true, /* Enable project compilation */
// "declaration": true, /* Generates corresponding '.d.ts' file. */
// "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
// "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
// "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
// "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
// "importHelpers": true, /* Import emit helpers from 'tslib'. */
// "incremental": true, /* Enable incremental compilation */
// "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. */
// "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */
// "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
// "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */
// "noUncheckedIndexedAccess": true, /* Include 'undefined' in index signature results */
// "noUnusedLocals": true, /* Report errors on unused locals. */
// "noUnusedParameters": true, /* Report errors on unused parameters. */
// "outDir": "./", /* Redirect output structure to the directory. */
// "outFile": "./", /* Concatenate and emit output to single file. */
// "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
// "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */
"removeComments": true /* Do not emit comments to output. */
// "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
// "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */
// "sourceMap": true, /* Generates corresponding '.map' file. */
// "sourceRoot": "", /* Specify the location where debugger should locate TypeScript files instead of source locations. */
// "strictBindCallApply": true, /* Enable strict 'bind', 'call', and 'apply' methods on functions. */
// "strictFunctionTypes": true, /* Enable strict checking of function types. */
// "strictNullChecks": true, /* Enable strict null checks. */
// "strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */
// "tsBuildInfoFile": "./", /* Specify file to store incremental compilation information */
// "typeRoots": [], /* List of folders to include type definitions from. */
// "types": [], /* Type declaration files to be included in compilation. */
},
"include": [".", ".eslintrc.js"]
}