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
+10-2Lines changed: 10 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,7 @@ interface CompilerOptions {
29
29
experimentalAsyncFunctions?: boolean;
30
30
experimentalDecorators?: boolean;// Experimental. Needed for the next option `emitDecoratorMetadata` see : https://github.com/Microsoft/TypeScript/pull/3330
31
31
emitDecoratorMetadata?: boolean;// Experimental. Emits addition type information for this reflection API https://github.com/rbuckton/ReflectDecorators
32
+
forceConsistentCasingInFileNames?: boolean;
32
33
help?: boolean;
33
34
isolatedModules?: boolean;
34
35
inlineSourceMap?: boolean;
@@ -51,10 +52,13 @@ interface CompilerOptions {
51
52
noLib?: boolean;
52
53
noLibCheck?: boolean;
53
54
noResolve?: boolean;
54
-
out?: string;
55
+
out?: string;// Deprecated. Use outFile instead
55
56
outFile?: string;// new name for out
56
57
outDir?: string;// Redirect output structure to this directory
57
58
preserveConstEnums?: boolean;
59
+
pretty?: boolean;// Experimental
60
+
project?: string;
61
+
reactNamespace?: string;
58
62
removeComments?: boolean;// Do not emit comments in output
59
63
rootDir?: string;
60
64
skipDefaultLibCheck?: boolean;
@@ -82,6 +86,7 @@ var compilerOptionsValidation: simpleValidator.ValidationInfo = {
0 commit comments