Class TsJestTsconfig

    • Nested Class Summary

      • Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject

        software.amazon.jsii.JsiiObject.InitializationMode
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      protected TsJestTsconfig​(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)  
      protected TsJestTsconfig​(software.amazon.jsii.JsiiObjectRef objRef)  
    • Constructor Detail

      • TsJestTsconfig

        protected TsJestTsconfig​(software.amazon.jsii.JsiiObjectRef objRef)
      • TsJestTsconfig

        protected TsJestTsconfig​(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • Method Detail

      • auto

        @Stability(Experimental)
        @NotNull
        public static TsJestTsconfig auto()
        (experimental) Uses tsconfig.json if found, or the built-in default TypeScript compiler options.
      • builtInDefaults

        @Stability(Experimental)
        @NotNull
        public static TsJestTsconfig builtInDefaults()
        (experimental) Force ts-jest to use its built-in defaults even if there is a tsconfig.json in your project.
      • fromFile

        @Stability(Experimental)
        @NotNull
        public static TsJestTsconfig fromFile​(@NotNull
                                              String filePath)
        (experimental) Path to a tsconfig file.

        The path should be relative to the current working directory where you start Jest from. You can also use <rootDir> in the path to start from the project root dir.

        Parameters:
        filePath - This parameter is required.