You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/main/tsconfig/tsconfig.ts
+27-19Lines changed: 27 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -21,30 +21,31 @@ interface CompilerOptions {
21
21
allowSyntheticDefaultImports?: boolean;
22
22
allowUnreachableCode?: boolean;
23
23
allowUnusedLabels?: boolean;
24
+
alwaysStrict?: boolean;
25
+
baseUrl?: string;
24
26
8000
charset?: string;
25
27
codepage?: number;
26
28
declaration?: boolean;
27
29
declarationDir?: string;
28
30
diagnostics?: boolean;
29
31
emitBOM?: boolean;
32
+
emitDecoratorMetadata?: boolean;// Experimental. Emits addition type information for this reflection API https://github.com/rbuckton/ReflectDecorators
30
33
experimentalAsyncFunctions?: boolean;
31
34
experimentalDecorators?: boolean;// Experimental. Needed for the next option `emitDecoratorMetadata` see : https://github.com/Microsoft/TypeScript/pull/3330
32
-
emitDecoratorMetadata?: boolean;// Experimental. Emits addition type information for this reflection API https://github.com/rbuckton/ReflectDecorators
33
35
forceConsistentCasingInFileNames?: boolean;
34
36
help?: boolean;
35
37
importHelpers?: boolean;
36
-
isolatedModules?: boolean;
37
38
inlineSourceMap?: boolean;
38
39
inlineSources?: boolean;
40
+
isolatedModules?: boolean;
39
41
jsx?: string;
40
-
locale?: string;
42
+
jsxFactory?: string;
43
+
lib?: string[];
41
44
listFiles?: boolean;
45
+
locale?: string;
42
46
mapRoot?: string;// Optionally Specifies the location where debugger should locate map files after deployment
43
47
module?: string;
44
48
moduleResolution?: string;
45
-
baseUrl?: string;
46
-
paths?: {[pattern: string]: string[]};
47
-
rootDirs?: string[];
48
49
newLine?: string;
49
50
noEmit?: boolean;
50
51
noEmitHelpers?: boolean;
@@ -61,27 +62,29 @@ interface CompilerOptions {
61
62
noUnusedLocals?: boolean;
62
63
noUnusedParameters?: boolean;
63
64
out?: string;// Deprecated. Use outFile instead
64
-
outFile?: string;// new name for out
65
65
outDir?: string;// Redirect output structure to this directory
66
+
outFile?: string;// new name for out
67
+
paths?: {[pattern: string]: string[]};
66
68
preserveConstEnums?: boolean;
67
69
pretty?: boolean;// Experimental
68
70
project?: string;
69
71
reactNamespace?: string;
70
72
removeComments?: boolean;// Do not emit comments in output
0 commit comments