projen 0.93.3__py3-none-any.whl → 0.94.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of projen might be problematic. Click here for more details.
- projen/_jsii/__init__.py +1 -1
- projen/_jsii/projen@0.94.1.jsii.tgz +0 -0
- projen/awscdk/__init__.py +9 -9
- projen/cdk/__init__.py +6 -6
- projen/cdk8s/__init__.py +6 -6
- projen/cdktf/__init__.py +3 -3
- projen/javascript/__init__.py +51 -57
- projen/javascript/biome_config/__init__.py +3794 -22860
- projen/typescript/__init__.py +199 -28
- projen/web/__init__.py +6 -6
- {projen-0.93.3.data → projen-0.94.1.data}/scripts/projen +1 -1
- {projen-0.93.3.dist-info → projen-0.94.1.dist-info}/METADATA +1 -1
- projen-0.94.1.dist-info/RECORD +27 -0
- projen/_jsii/projen@0.93.3.jsii.tgz +0 -0
- projen-0.93.3.dist-info/RECORD +0 -27
- {projen-0.93.3.dist-info → projen-0.94.1.dist-info}/LICENSE +0 -0
- {projen-0.93.3.dist-info → projen-0.94.1.dist-info}/WHEEL +0 -0
- {projen-0.93.3.dist-info → projen-0.94.1.dist-info}/top_level.txt +0 -0
projen/typescript/__init__.py
CHANGED
|
@@ -75,8 +75,11 @@ from ..javascript import (
|
|
|
75
75
|
ProjenrcOptions as _ProjenrcOptions_179dd39f,
|
|
76
76
|
ScopedPackagesOptions as _ScopedPackagesOptions_52f0a477,
|
|
77
77
|
TypeScriptCompilerOptions as _TypeScriptCompilerOptions_829fc4b0,
|
|
78
|
+
TypeScriptImportsNotUsedAsValues as _TypeScriptImportsNotUsedAsValues_95cb8527,
|
|
79
|
+
TypeScriptJsxMode as _TypeScriptJsxMode_8489d67f,
|
|
80
|
+
TypeScriptModuleDetection as _TypeScriptModuleDetection_28bd432f,
|
|
81
|
+
TypeScriptModuleResolution as _TypeScriptModuleResolution_56cffb1b,
|
|
78
82
|
TypescriptConfig as _TypescriptConfig_e4a2920d,
|
|
79
|
-
TypescriptConfigExtends as _TypescriptConfigExtends_ba2a99fc,
|
|
80
83
|
TypescriptConfigOptions as _TypescriptConfigOptions_8c5492cd,
|
|
81
84
|
UpgradeDependenciesOptions as _UpgradeDependenciesOptions_1d8ce4da,
|
|
82
85
|
YarnBerryOptions as _YarnBerryOptions_b6942539,
|
|
@@ -754,29 +757,197 @@ class TsJestTsconfig(
|
|
|
754
757
|
def custom(
|
|
755
758
|
cls,
|
|
756
759
|
*,
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
760
|
+
allow_arbitrary_extensions: typing.Optional[builtins.bool] = None,
|
|
761
|
+
allow_importing_ts_extensions: typing.Optional[builtins.bool] = None,
|
|
762
|
+
allow_js: typing.Optional[builtins.bool] = None,
|
|
763
|
+
allow_synthetic_default_imports: typing.Optional[builtins.bool] = None,
|
|
764
|
+
allow_unreachable_code: typing.Optional[builtins.bool] = None,
|
|
765
|
+
allow_unused_labels: typing.Optional[builtins.bool] = None,
|
|
766
|
+
always_strict: typing.Optional[builtins.bool] = None,
|
|
767
|
+
base_url: typing.Optional[builtins.str] = None,
|
|
768
|
+
check_js: typing.Optional[builtins.bool] = None,
|
|
769
|
+
custom_conditions: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
770
|
+
declaration: typing.Optional[builtins.bool] = None,
|
|
771
|
+
declaration_dir: typing.Optional[builtins.str] = None,
|
|
772
|
+
declaration_map: typing.Optional[builtins.bool] = None,
|
|
773
|
+
downlevel_iteration: typing.Optional[builtins.bool] = None,
|
|
774
|
+
emit_declaration_only: typing.Optional[builtins.bool] = None,
|
|
775
|
+
emit_decorator_metadata: typing.Optional[builtins.bool] = None,
|
|
776
|
+
es_module_interop: typing.Optional[builtins.bool] = None,
|
|
777
|
+
exact_optional_property_types: typing.Optional[builtins.bool] = None,
|
|
778
|
+
experimental_decorators: typing.Optional[builtins.bool] = None,
|
|
779
|
+
force_consistent_casing_in_file_names: typing.Optional[builtins.bool] = None,
|
|
780
|
+
imports_not_used_as_values: typing.Optional[_TypeScriptImportsNotUsedAsValues_95cb8527] = None,
|
|
781
|
+
incremental: typing.Optional[builtins.bool] = None,
|
|
782
|
+
inline_source_map: typing.Optional[builtins.bool] = None,
|
|
783
|
+
inline_sources: typing.Optional[builtins.bool] = None,
|
|
784
|
+
isolated_modules: typing.Optional[builtins.bool] = None,
|
|
785
|
+
jsx: typing.Optional[_TypeScriptJsxMode_8489d67f] = None,
|
|
786
|
+
jsx_import_source: typing.Optional[builtins.str] = None,
|
|
787
|
+
lib: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
788
|
+
module: typing.Optional[builtins.str] = None,
|
|
789
|
+
module_detection: typing.Optional[_TypeScriptModuleDetection_28bd432f] = None,
|
|
790
|
+
module_resolution: typing.Optional[_TypeScriptModuleResolution_56cffb1b] = None,
|
|
791
|
+
no_emit: typing.Optional[builtins.bool] = None,
|
|
792
|
+
no_emit_on_error: typing.Optional[builtins.bool] = None,
|
|
793
|
+
no_fallthrough_cases_in_switch: typing.Optional[builtins.bool] = None,
|
|
794
|
+
no_implicit_any: typing.Optional[builtins.bool] = None,
|
|
795
|
+
no_implicit_override: typing.Optional[builtins.bool] = None,
|
|
796
|
+
no_implicit_returns: typing.Optional[builtins.bool] = None,
|
|
797
|
+
no_implicit_this: typing.Optional[builtins.bool] = None,
|
|
798
|
+
no_property_access_from_index_signature: typing.Optional[builtins.bool] = None,
|
|
799
|
+
no_unchecked_indexed_access: typing.Optional[builtins.bool] = None,
|
|
800
|
+
no_unused_locals: typing.Optional[builtins.bool] = None,
|
|
801
|
+
no_unused_parameters: typing.Optional[builtins.bool] = None,
|
|
802
|
+
out_dir: typing.Optional[builtins.str] = None,
|
|
803
|
+
paths: typing.Optional[typing.Mapping[builtins.str, typing.Sequence[builtins.str]]] = None,
|
|
804
|
+
resolve_json_module: typing.Optional[builtins.bool] = None,
|
|
805
|
+
resolve_package_json_exports: typing.Optional[builtins.bool] = None,
|
|
806
|
+
resolve_package_json_imports: typing.Optional[builtins.bool] = None,
|
|
807
|
+
root_dir: typing.Optional[builtins.str] = None,
|
|
808
|
+
skip_lib_check: typing.Optional[builtins.bool] = None,
|
|
809
|
+
source_map: typing.Optional[builtins.bool] = None,
|
|
810
|
+
source_root: typing.Optional[builtins.str] = None,
|
|
811
|
+
strict: typing.Optional[builtins.bool] = None,
|
|
812
|
+
strict_null_checks: typing.Optional[builtins.bool] = None,
|
|
813
|
+
strict_property_initialization: typing.Optional[builtins.bool] = None,
|
|
814
|
+
strip_internal: typing.Optional[builtins.bool] = None,
|
|
815
|
+
target: typing.Optional[builtins.str] = None,
|
|
816
|
+
ts_build_info_file: typing.Optional[builtins.str] = None,
|
|
817
|
+
type_roots: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
818
|
+
types: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
819
|
+
use_unknown_in_catch_variables: typing.Optional[builtins.bool] = None,
|
|
820
|
+
verbatim_module_syntax: typing.Optional[builtins.bool] = None,
|
|
762
821
|
) -> "TsJestTsconfig":
|
|
763
822
|
'''(experimental) Inline compiler options.
|
|
764
823
|
|
|
765
|
-
:param
|
|
766
|
-
:param
|
|
767
|
-
:param
|
|
768
|
-
:param
|
|
769
|
-
:param
|
|
770
|
-
|
|
771
|
-
:
|
|
772
|
-
:
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
824
|
+
:param allow_arbitrary_extensions: (experimental) Suppress arbitrary extension import errors with the assumption that a bundler will be handling it. Default: undefined
|
|
825
|
+
:param allow_importing_ts_extensions: (experimental) Allows TypeScript files to import each other with TypeScript-specific extensions (``.ts``, ``.mts``, ``.tsx``). Requires ``noEmit`` or ``emitDeclarationOnly``. Default: undefined
|
|
826
|
+
:param allow_js: (experimental) Allow JavaScript files to be compiled. Default: false
|
|
827
|
+
:param allow_synthetic_default_imports: (experimental) Allow default imports from modules with no default export. This does not affect code emit, just typechecking.
|
|
828
|
+
:param allow_unreachable_code: (experimental) Allow Unreachable Code. When: - ``undefined`` (default) provide suggestions as warnings to editors - ``true`` unreachable code is ignored - ``false`` raises compiler errors about unreachable code These warnings are only about code which is provably unreachable due to the use of JavaScript syntax.
|
|
829
|
+
:param allow_unused_labels: (experimental) Allow Unused Labels. When: - ``undefined`` (default) provide suggestions as warnings to editors - ``true`` unused labels are ignored - ``false`` raises compiler errors about unused labels Labels are very rare in JavaScript and typically indicate an attempt to write an object literal:: function verifyAge(age: number) { // Forgot 'return' statement if (age > 18) { verified: true; // ^^^^^^^^ Unused label. } }
|
|
830
|
+
:param always_strict: (experimental) Ensures that your files are parsed in the ECMAScript strict mode, and emit “use strict” for each source file. Default: true
|
|
831
|
+
:param base_url: (experimental) Lets you set a base directory to resolve non-absolute module names. You can define a root folder where you can do absolute file resolution.
|
|
832
|
+
:param check_js: (experimental) Check JS. Works in tandem with `allowJs <https://www.typescriptlang.org/tsconfig#allowJs>`_. When checkJs is enabled then errors are reported in JavaScript files. This is the equivalent of including //
|
|
833
|
+
:param custom_conditions: (experimental) List of additional conditions that should succeed when TypeScript resolves from an ``exports`` or ``imports`` field of a ``package.json``. Default: undefined
|
|
834
|
+
:param declaration: (experimental) To be specified along with the above.
|
|
835
|
+
:param declaration_dir: (experimental) Offers a way to configure the root directory for where declaration files are emitted.
|
|
836
|
+
:param declaration_map: (experimental) Generates a source map for .d.ts files which map back to the original .ts source file. This will allow editors such as VS Code to go to the original .ts file when using features like Go to Definition.
|
|
837
|
+
:param downlevel_iteration: (experimental) Downleveling is TypeScript’s term for transpiling to an older version of JavaScript. This flag is to enable support for a more accurate implementation of how modern JavaScript iterates through new concepts in older JavaScript runtimes. ECMAScript 6 added several new iteration primitives: the for / of loop (for (el of arr)), Array spread ([a, ...b]), argument spread (fn(...args)), and Symbol.iterator. downlevelIteration allows for these iteration primitives to be used more accurately in ES5 environments if a Symbol.iterator implementation is present.
|
|
838
|
+
:param emit_declaration_only: (experimental) Only emit .d.ts files; do not emit .js files. Default: false
|
|
839
|
+
:param emit_decorator_metadata: (experimental) Enables experimental support for decorators, which is in stage 2 of the TC39 standardization process. Decorators are a language feature which hasn’t yet been fully ratified into the JavaScript specification. This means that the implementation version in TypeScript may differ from the implementation in JavaScript when it it decided by TC39. You can find out more about decorator support in TypeScript in the handbook. Default: undefined
|
|
840
|
+
:param es_module_interop: (experimental) Emit __importStar and __importDefault helpers for runtime babel ecosystem compatibility and enable --allowSyntheticDefaultImports for typesystem compatibility. Default: false
|
|
841
|
+
:param exact_optional_property_types: (experimental) Specifies that optional property types should be interpreted exactly as written, meaning that ``| undefined`` is not added to the type Available with TypeScript 4.4 and newer. Default: false
|
|
842
|
+
:param experimental_decorators: (experimental) Enables experimental support for decorators, which is in stage 2 of the TC39 standardization process. Default: true
|
|
843
|
+
:param force_consistent_casing_in_file_names: (experimental) Disallow inconsistently-cased references to the same file. Default: false
|
|
844
|
+
:param imports_not_used_as_values: (experimental) This flag works because you can use ``import type`` to explicitly create an ``import`` statement which should never be emitted into JavaScript. Default: "remove"
|
|
845
|
+
:param incremental: (experimental) Tells TypeScript to save information about the project graph from the last compilation to files stored on disk. This creates a series of .tsbuildinfo files in the same folder as your compilation output. They are not used by your JavaScript at runtime and can be safely deleted. You can read more about the flag in the 3.4 release notes.
|
|
846
|
+
:param inline_source_map: (experimental) When set, instead of writing out a .js.map file to provide source maps, TypeScript will embed the source map content in the .js files. Default: true
|
|
847
|
+
:param inline_sources: (experimental) When set, TypeScript will include the original content of the .ts file as an embedded string in the source map. This is often useful in the same cases as inlineSourceMap. Default: true
|
|
848
|
+
:param isolated_modules: (experimental) Perform additional checks to ensure that separate compilation (such as with transpileModule or. Default: false
|
|
849
|
+
:param jsx: (experimental) Support JSX in .tsx files: "react", "preserve", "react-native" etc. Default: undefined
|
|
850
|
+
:param jsx_import_source: (experimental) Declares the module specifier to be used for importing the jsx and jsxs factory functions when using jsx. Default: undefined
|
|
851
|
+
:param lib: (experimental) Reference for type definitions / libraries to use (eg. ES2016, ES5, ES2018). Default: [ "es2018" ]
|
|
852
|
+
:param module: (experimental) Sets the module system for the program. See https://www.typescriptlang.org/docs/handbook/modules.html#ambient-modules. Default: "CommonJS"
|
|
853
|
+
:param module_detection: (experimental) This setting controls how TypeScript determines whether a file is a `script or a module <https://www.typescriptlang.org/docs/handbook/modules/theory.html#scripts-and-modules-in-javascript>`_. Default: "auto"
|
|
854
|
+
:param module_resolution: (experimental) Determine how modules get resolved. Either "Node" for Node.js/io.js style resolution, or "Classic". Default: "node"
|
|
855
|
+
:param no_emit: (experimental) Do not emit outputs. Default: false
|
|
856
|
+
:param no_emit_on_error: (experimental) Do not emit compiler output files like JavaScript source code, source-maps or declarations if any errors were reported. Default: true
|
|
857
|
+
:param no_fallthrough_cases_in_switch: (experimental) Report errors for fallthrough cases in switch statements. Ensures that any non-empty case inside a switch statement includes either break or return. This means you won’t accidentally ship a case fallthrough bug. Default: true
|
|
858
|
+
:param no_implicit_any: (experimental) In some cases where no type annotations are present, TypeScript will fall back to a type of any for a variable when it cannot infer the type. Default: true
|
|
859
|
+
:param no_implicit_override: (experimental) Using ``noImplicitOverride``, you can ensure that sub-classes never go out of sync as they are required to explicitly declare that they are overriding a member using the ``override`` keyword. This also improves readability of the programmer's intent. Available with TypeScript 4.3 and newer. Default: false
|
|
860
|
+
:param no_implicit_returns: (experimental) When enabled, TypeScript will check all code paths in a function to ensure they return a value. Default: true
|
|
861
|
+
:param no_implicit_this: (experimental) Raise error on ‘this’ expressions with an implied ‘any’ type. Default: true
|
|
862
|
+
:param no_property_access_from_index_signature: (experimental) Raise error on use of the dot syntax to access fields which are not defined. Default: true
|
|
863
|
+
:param no_unchecked_indexed_access: (experimental) Raise error when accessing indexes on objects with unknown keys defined in index signatures. Default: true
|
|
864
|
+
:param no_unused_locals: (experimental) Report errors on unused local variables. Default: true
|
|
865
|
+
:param no_unused_parameters: (experimental) Report errors on unused parameters in functions. Default: true
|
|
866
|
+
:param out_dir: (experimental) Output directory for the compiled files.
|
|
867
|
+
:param paths: (experimental) A series of entries which re-map imports to lookup locations relative to the baseUrl, there is a larger coverage of paths in the handbook. paths lets you declare how TypeScript should resolve an import in your require/imports.
|
|
868
|
+
:param resolve_json_module: (experimental) Allows importing modules with a ‘.json’ extension, which is a common practice in node projects. This includes generating a type for the import based on the static JSON shape. Default: true
|
|
869
|
+
:param resolve_package_json_exports: (experimental) Forces TypeScript to consult the ``exports`` field of ``package.json`` files if it ever reads from a package in ``node_modules``. Default: true
|
|
870
|
+
:param resolve_package_json_imports: (experimental) Forces TypeScript to consult the ``imports`` field of ``package.json`` when performing a lookup that begins with ``#`` from a file that has a ``package.json`` as an ancestor. Default: undefined
|
|
871
|
+
:param root_dir: (experimental) Specifies the root directory of input files. Only use to control the output directory structure with ``outDir``.
|
|
872
|
+
:param skip_lib_check: (experimental) Skip type checking of all declaration files (*.d.ts). Default: false
|
|
873
|
+
:param source_map: (experimental) Enables the generation of sourcemap files. Default: undefined
|
|
874
|
+
:param source_root: (experimental) Specify the location where a debugger should locate TypeScript files instead of relative source locations. Default: undefined
|
|
875
|
+
:param strict: (experimental) The strict flag enables a wide range of type checking behavior that results in stronger guarantees of program correctness. Turning this on is equivalent to enabling all of the strict mode family options, which are outlined below. You can then turn off individual strict mode family checks as needed. Default: true
|
|
876
|
+
:param strict_null_checks: (experimental) When strictNullChecks is false, null and undefined are effectively ignored by the language. This can lead to unexpected errors at runtime. When strictNullChecks is true, null and undefined have their own distinct types and you’ll get a type error if you try to use them where a concrete value is expected. Default: true
|
|
877
|
+
:param strict_property_initialization: (experimental) When set to true, TypeScript will raise an error when a class property was declared but not set in the constructor. Default: true
|
|
878
|
+
:param strip_internal: (experimental) Do not emit declarations for code that has an ``@internal`` annotation in it’s JSDoc comment. Default: true
|
|
879
|
+
:param target: (experimental) Modern browsers support all ES6 features, so ES6 is a good choice. You might choose to set a lower target if your code is deployed to older environments, or a higher target if your code is guaranteed to run in newer environments. Default: "ES2018"
|
|
880
|
+
:param ts_build_info_file: (experimental) This setting lets you specify a file for storing incremental compilation information as a part of composite projects which enables faster building of larger TypeScript codebases. You can read more about composite projects in the handbook.
|
|
881
|
+
:param type_roots: (experimental) If typeRoots is specified, only packages under typeRoots will be included.
|
|
882
|
+
:param types: (experimental) If types is specified, only packages listed will be included in the global scope.
|
|
883
|
+
:param use_unknown_in_catch_variables: (experimental) Change the type of the variable in a catch clause from any to unknown Available with TypeScript 4.4 and newer. Default: true
|
|
884
|
+
:param verbatim_module_syntax: (experimental) Simplifies TypeScript's handling of import/export ``type`` modifiers. Default: undefined
|
|
885
|
+
|
|
886
|
+
:see: TypeScriptCompilerOptions
|
|
887
|
+
:stability: experimental
|
|
888
|
+
'''
|
|
889
|
+
config = _TypeScriptCompilerOptions_829fc4b0(
|
|
890
|
+
allow_arbitrary_extensions=allow_arbitrary_extensions,
|
|
891
|
+
allow_importing_ts_extensions=allow_importing_ts_extensions,
|
|
892
|
+
allow_js=allow_js,
|
|
893
|
+
allow_synthetic_default_imports=allow_synthetic_default_imports,
|
|
894
|
+
allow_unreachable_code=allow_unreachable_code,
|
|
895
|
+
allow_unused_labels=allow_unused_labels,
|
|
896
|
+
always_strict=always_strict,
|
|
897
|
+
base_url=base_url,
|
|
898
|
+
check_js=check_js,
|
|
899
|
+
custom_conditions=custom_conditions,
|
|
900
|
+
declaration=declaration,
|
|
901
|
+
declaration_dir=declaration_dir,
|
|
902
|
+
declaration_map=declaration_map,
|
|
903
|
+
downlevel_iteration=downlevel_iteration,
|
|
904
|
+
emit_declaration_only=emit_declaration_only,
|
|
905
|
+
emit_decorator_metadata=emit_decorator_metadata,
|
|
906
|
+
es_module_interop=es_module_interop,
|
|
907
|
+
exact_optional_property_types=exact_optional_property_types,
|
|
908
|
+
experimental_decorators=experimental_decorators,
|
|
909
|
+
force_consistent_casing_in_file_names=force_consistent_casing_in_file_names,
|
|
910
|
+
imports_not_used_as_values=imports_not_used_as_values,
|
|
911
|
+
incremental=incremental,
|
|
912
|
+
inline_source_map=inline_source_map,
|
|
913
|
+
inline_sources=inline_sources,
|
|
914
|
+
isolated_modules=isolated_modules,
|
|
915
|
+
jsx=jsx,
|
|
916
|
+
jsx_import_source=jsx_import_source,
|
|
917
|
+
lib=lib,
|
|
918
|
+
module=module,
|
|
919
|
+
module_detection=module_detection,
|
|
920
|
+
module_resolution=module_resolution,
|
|
921
|
+
no_emit=no_emit,
|
|
922
|
+
no_emit_on_error=no_emit_on_error,
|
|
923
|
+
no_fallthrough_cases_in_switch=no_fallthrough_cases_in_switch,
|
|
924
|
+
no_implicit_any=no_implicit_any,
|
|
925
|
+
no_implicit_override=no_implicit_override,
|
|
926
|
+
no_implicit_returns=no_implicit_returns,
|
|
927
|
+
no_implicit_this=no_implicit_this,
|
|
928
|
+
no_property_access_from_index_signature=no_property_access_from_index_signature,
|
|
929
|
+
no_unchecked_indexed_access=no_unchecked_indexed_access,
|
|
930
|
+
no_unused_locals=no_unused_locals,
|
|
931
|
+
no_unused_parameters=no_unused_parameters,
|
|
932
|
+
out_dir=out_dir,
|
|
933
|
+
paths=paths,
|
|
934
|
+
resolve_json_module=resolve_json_module,
|
|
935
|
+
resolve_package_json_exports=resolve_package_json_exports,
|
|
936
|
+
resolve_package_json_imports=resolve_package_json_imports,
|
|
937
|
+
root_dir=root_dir,
|
|
938
|
+
skip_lib_check=skip_lib_check,
|
|
939
|
+
source_map=source_map,
|
|
940
|
+
source_root=source_root,
|
|
941
|
+
strict=strict,
|
|
942
|
+
strict_null_checks=strict_null_checks,
|
|
943
|
+
strict_property_initialization=strict_property_initialization,
|
|
944
|
+
strip_internal=strip_internal,
|
|
945
|
+
target=target,
|
|
946
|
+
ts_build_info_file=ts_build_info_file,
|
|
947
|
+
type_roots=type_roots,
|
|
948
|
+
types=types,
|
|
949
|
+
use_unknown_in_catch_variables=use_unknown_in_catch_variables,
|
|
950
|
+
verbatim_module_syntax=verbatim_module_syntax,
|
|
780
951
|
)
|
|
781
952
|
|
|
782
953
|
return typing.cast("TsJestTsconfig", jsii.sinvoke(cls, "custom", [config]))
|
|
@@ -969,7 +1140,7 @@ class TypeScriptProject(
|
|
|
969
1140
|
:param docgen: (experimental) Docgen by Typedoc. Default: false
|
|
970
1141
|
:param docs_directory: (experimental) Docs directory. Default: "docs"
|
|
971
1142
|
:param entrypoint_types: (experimental) The .d.ts file that includes the type declarations for this module. Default: - .d.ts file derived from the project's entrypoint (usually lib/index.d.ts)
|
|
972
|
-
:param eslint: (experimental) Setup eslint. Default: true
|
|
1143
|
+
:param eslint: (experimental) Setup eslint. Default: - true, unless biome is enabled
|
|
973
1144
|
:param eslint_options: (experimental) Eslint options. Default: - opinionated default options
|
|
974
1145
|
:param libdir: (experimental) Typescript artifacts output directory. Default: "lib"
|
|
975
1146
|
:param projenrc_ts: (experimental) Use TypeScript for your projenrc file (``.projenrc.ts``). Default: false
|
|
@@ -1825,7 +1996,7 @@ class TypeScriptProjectOptions(_NodeProjectOptions_d12f6f3b):
|
|
|
1825
1996
|
:param docgen: (experimental) Docgen by Typedoc. Default: false
|
|
1826
1997
|
:param docs_directory: (experimental) Docs directory. Default: "docs"
|
|
1827
1998
|
:param entrypoint_types: (experimental) The .d.ts file that includes the type declarations for this module. Default: - .d.ts file derived from the project's entrypoint (usually lib/index.d.ts)
|
|
1828
|
-
:param eslint: (experimental) Setup eslint. Default: true
|
|
1999
|
+
:param eslint: (experimental) Setup eslint. Default: - true, unless biome is enabled
|
|
1829
2000
|
:param eslint_options: (experimental) Eslint options. Default: - opinionated default options
|
|
1830
2001
|
:param libdir: (experimental) Typescript artifacts output directory. Default: "lib"
|
|
1831
2002
|
:param projenrc_ts: (experimental) Use TypeScript for your projenrc file (``.projenrc.ts``). Default: false
|
|
@@ -4072,7 +4243,7 @@ class TypeScriptProjectOptions(_NodeProjectOptions_d12f6f3b):
|
|
|
4072
4243
|
def eslint(self) -> typing.Optional[builtins.bool]:
|
|
4073
4244
|
'''(experimental) Setup eslint.
|
|
4074
4245
|
|
|
4075
|
-
:default: true
|
|
4246
|
+
:default: - true, unless biome is enabled
|
|
4076
4247
|
|
|
4077
4248
|
:stability: experimental
|
|
4078
4249
|
'''
|
|
@@ -4420,7 +4591,7 @@ class TypeScriptAppProject(
|
|
|
4420
4591
|
:param docgen: (experimental) Docgen by Typedoc. Default: false
|
|
4421
4592
|
:param docs_directory: (experimental) Docs directory. Default: "docs"
|
|
4422
4593
|
:param entrypoint_types: (experimental) The .d.ts file that includes the type declarations for this module. Default: - .d.ts file derived from the project's entrypoint (usually lib/index.d.ts)
|
|
4423
|
-
:param eslint: (experimental) Setup eslint. Default: true
|
|
4594
|
+
:param eslint: (experimental) Setup eslint. Default: - true, unless biome is enabled
|
|
4424
4595
|
:param eslint_options: (experimental) Eslint options. Default: - opinionated default options
|
|
4425
4596
|
:param libdir: (experimental) Typescript artifacts output directory. Default: "lib"
|
|
4426
4597
|
:param projenrc_ts: (experimental) Use TypeScript for your projenrc file (``.projenrc.ts``). Default: false
|
|
@@ -4895,7 +5066,7 @@ class TypeScriptLibraryProject(
|
|
|
4895
5066
|
:param docgen: (experimental) Docgen by Typedoc. Default: false
|
|
4896
5067
|
:param docs_directory: (experimental) Docs directory. Default: "docs"
|
|
4897
5068
|
:param entrypoint_types: (experimental) The .d.ts file that includes the type declarations for this module. Default: - .d.ts file derived from the project's entrypoint (usually lib/index.d.ts)
|
|
4898
|
-
:param eslint: (experimental) Setup eslint. Default: true
|
|
5069
|
+
:param eslint: (experimental) Setup eslint. Default: - true, unless biome is enabled
|
|
4899
5070
|
:param eslint_options: (experimental) Eslint options. Default: - opinionated default options
|
|
4900
5071
|
:param libdir: (experimental) Typescript artifacts output directory. Default: "lib"
|
|
4901
5072
|
:param projenrc_ts: (experimental) Use TypeScript for your projenrc file (``.projenrc.ts``). Default: false
|
|
@@ -5648,7 +5819,7 @@ class TypeScriptLibraryProjectOptions(TypeScriptProjectOptions):
|
|
|
5648
5819
|
:param docgen: (experimental) Docgen by Typedoc. Default: false
|
|
5649
5820
|
:param docs_directory: (experimental) Docs directory. Default: "docs"
|
|
5650
5821
|
:param entrypoint_types: (experimental) The .d.ts file that includes the type declarations for this module. Default: - .d.ts file derived from the project's entrypoint (usually lib/index.d.ts)
|
|
5651
|
-
:param eslint: (experimental) Setup eslint. Default: true
|
|
5822
|
+
:param eslint: (experimental) Setup eslint. Default: - true, unless biome is enabled
|
|
5652
5823
|
:param eslint_options: (experimental) Eslint options. Default: - opinionated default options
|
|
5653
5824
|
:param libdir: (experimental) Typescript artifacts output directory. Default: "lib"
|
|
5654
5825
|
:param projenrc_ts: (experimental) Use TypeScript for your projenrc file (``.projenrc.ts``). Default: false
|
|
@@ -7897,7 +8068,7 @@ class TypeScriptLibraryProjectOptions(TypeScriptProjectOptions):
|
|
|
7897
8068
|
def eslint(self) -> typing.Optional[builtins.bool]:
|
|
7898
8069
|
'''(experimental) Setup eslint.
|
|
7899
8070
|
|
|
7900
|
-
:default: true
|
|
8071
|
+
:default: - true, unless biome is enabled
|
|
7901
8072
|
|
|
7902
8073
|
:stability: experimental
|
|
7903
8074
|
'''
|
projen/web/__init__.py
CHANGED
|
@@ -3487,7 +3487,7 @@ class NextJsTypeScriptProject(
|
|
|
3487
3487
|
:param docgen: (experimental) Docgen by Typedoc. Default: false
|
|
3488
3488
|
:param docs_directory: (experimental) Docs directory. Default: "docs"
|
|
3489
3489
|
:param entrypoint_types: (experimental) The .d.ts file that includes the type declarations for this module. Default: - .d.ts file derived from the project's entrypoint (usually lib/index.d.ts)
|
|
3490
|
-
:param eslint: (experimental) Setup eslint. Default: true
|
|
3490
|
+
:param eslint: (experimental) Setup eslint. Default: - true, unless biome is enabled
|
|
3491
3491
|
:param eslint_options: (experimental) Eslint options. Default: - opinionated default options
|
|
3492
3492
|
:param libdir: (experimental) Typescript artifacts output directory. Default: "lib"
|
|
3493
3493
|
:param projenrc_ts: (experimental) Use TypeScript for your projenrc file (``.projenrc.ts``). Default: false
|
|
@@ -4279,7 +4279,7 @@ class NextJsTypeScriptProjectOptions(
|
|
|
4279
4279
|
:param docgen: (experimental) Docgen by Typedoc. Default: false
|
|
4280
4280
|
:param docs_directory: (experimental) Docs directory. Default: "docs"
|
|
4281
4281
|
:param entrypoint_types: (experimental) The .d.ts file that includes the type declarations for this module. Default: - .d.ts file derived from the project's entrypoint (usually lib/index.d.ts)
|
|
4282
|
-
:param eslint: (experimental) Setup eslint. Default: true
|
|
4282
|
+
:param eslint: (experimental) Setup eslint. Default: - true, unless biome is enabled
|
|
4283
4283
|
:param eslint_options: (experimental) Eslint options. Default: - opinionated default options
|
|
4284
4284
|
:param libdir: (experimental) Typescript artifacts output directory. Default: "lib"
|
|
4285
4285
|
:param projenrc_ts: (experimental) Use TypeScript for your projenrc file (``.projenrc.ts``). Default: false
|
|
@@ -6556,7 +6556,7 @@ class NextJsTypeScriptProjectOptions(
|
|
|
6556
6556
|
def eslint(self) -> typing.Optional[builtins.bool]:
|
|
6557
6557
|
'''(experimental) Setup eslint.
|
|
6558
6558
|
|
|
6559
|
-
:default: true
|
|
6559
|
+
:default: - true, unless biome is enabled
|
|
6560
6560
|
|
|
6561
6561
|
:stability: experimental
|
|
6562
6562
|
'''
|
|
@@ -7746,7 +7746,7 @@ class ReactTypeScriptProject(
|
|
|
7746
7746
|
:param docgen: (experimental) Docgen by Typedoc. Default: false
|
|
7747
7747
|
:param docs_directory: (experimental) Docs directory. Default: "docs"
|
|
7748
7748
|
:param entrypoint_types: (experimental) The .d.ts file that includes the type declarations for this module. Default: - .d.ts file derived from the project's entrypoint (usually lib/index.d.ts)
|
|
7749
|
-
:param eslint: (experimental) Setup eslint. Default: true
|
|
7749
|
+
:param eslint: (experimental) Setup eslint. Default: - true, unless biome is enabled
|
|
7750
7750
|
:param eslint_options: (experimental) Eslint options. Default: - opinionated default options
|
|
7751
7751
|
:param libdir: (experimental) Typescript artifacts output directory. Default: "lib"
|
|
7752
7752
|
:param projenrc_ts: (experimental) Use TypeScript for your projenrc file (``.projenrc.ts``). Default: false
|
|
@@ -8515,7 +8515,7 @@ class ReactTypeScriptProjectOptions(
|
|
|
8515
8515
|
:param docgen: (experimental) Docgen by Typedoc. Default: false
|
|
8516
8516
|
:param docs_directory: (experimental) Docs directory. Default: "docs"
|
|
8517
8517
|
:param entrypoint_types: (experimental) The .d.ts file that includes the type declarations for this module. Default: - .d.ts file derived from the project's entrypoint (usually lib/index.d.ts)
|
|
8518
|
-
:param eslint: (experimental) Setup eslint. Default: true
|
|
8518
|
+
:param eslint: (experimental) Setup eslint. Default: - true, unless biome is enabled
|
|
8519
8519
|
:param eslint_options: (experimental) Eslint options. Default: - opinionated default options
|
|
8520
8520
|
:param libdir: (experimental) Typescript artifacts output directory. Default: "lib"
|
|
8521
8521
|
:param projenrc_ts: (experimental) Use TypeScript for your projenrc file (``.projenrc.ts``). Default: false
|
|
@@ -10766,7 +10766,7 @@ class ReactTypeScriptProjectOptions(
|
|
|
10766
10766
|
def eslint(self) -> typing.Optional[builtins.bool]:
|
|
10767
10767
|
'''(experimental) Setup eslint.
|
|
10768
10768
|
|
|
10769
|
-
:default: true
|
|
10769
|
+
:default: - true, unless biome is enabled
|
|
10770
10770
|
|
|
10771
10771
|
:stability: experimental
|
|
10772
10772
|
'''
|
|
@@ -8,7 +8,7 @@ if "JSII_RUNTIME_PACKAGE_CACHE" not in os.environ:
|
|
|
8
8
|
os.environ["JSII_RUNTIME_PACKAGE_CACHE"] = "disabled"
|
|
9
9
|
|
|
10
10
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
11
|
-
"projen", "0.
|
|
11
|
+
"projen", "0.94.1", "projen", "projen@0.94.1.jsii.tgz"
|
|
12
12
|
)
|
|
13
13
|
|
|
14
14
|
exit_code = __jsii_assembly__.invokeBinScript("projen", "projen", sys.argv[1:])
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
projen/__init__.py,sha256=enk9OVj1wwybFoSxSFFljuOcgiHWh-_izr2fj57oBdw,682920
|
|
2
|
+
projen/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
+
projen/_jsii/__init__.py,sha256=DLzHmXiMLtc8zovOY0QrvCVPUS-6QK1GSDGF6VpS2DI,1404
|
|
4
|
+
projen/_jsii/projen@0.94.1.jsii.tgz,sha256=9ef6NgocvsyTK6nzxjACPE36afIi3zcuswpsbLEE09Y,2922545
|
|
5
|
+
projen/awscdk/__init__.py,sha256=rb8Yb-qH9bHRJ-4uobUbtsobw0GlWwYTLy7sqcEP0bI,1134229
|
|
6
|
+
projen/build/__init__.py,sha256=CW4d2sEJXpP5DAOJKdOt8jaRSfdDjiWdb66k8JBsvRI,54225
|
|
7
|
+
projen/cdk/__init__.py,sha256=uFE70xdYN4nK_yrCOFW8gkcuHWM4JHaD4pziZIChAJA,538333
|
|
8
|
+
projen/cdk8s/__init__.py,sha256=nVyeVTm-Rp5qSnpnpsd0F_lH1AgdvTlI7YmwfIhjSEE,624813
|
|
9
|
+
projen/cdktf/__init__.py,sha256=CMMPuagj_w1y9pNjhiYG5soU4xFrurhL9QOgA_HT0mA,238088
|
|
10
|
+
projen/circleci/__init__.py,sha256=RvY_jD_QyDzURlD54vqebZrodhRv86Mn-I_YKH9ccw4,77781
|
|
11
|
+
projen/github/__init__.py,sha256=3QsckjxLjN3dXgMtcZIstIxBX8YlKDV75rZkydTVUr4,475267
|
|
12
|
+
projen/github/workflows/__init__.py,sha256=FvVHeCQ1lGQaMoXNsAQSOomS80eM5KO53JzEMRRJMtk,270268
|
|
13
|
+
projen/gitlab/__init__.py,sha256=BiiBQonVYZgdGo3NLXxJ6WcW47UuGQjBkTRLGm09Ozk,207826
|
|
14
|
+
projen/java/__init__.py,sha256=Y8yfXiL4RNXtxIc0LB7O3K0CKyw9TkQKkVXgJ57A9Fw,195299
|
|
15
|
+
projen/javascript/__init__.py,sha256=OP3nsrUAD1p1r4ouLnZges7MqmoSDuAczJA2qDYKm5k,893574
|
|
16
|
+
projen/javascript/biome_config/__init__.py,sha256=tO8ofUMIbI5OREKmA-AytyomEGHbaU6bRcvqW55azV8,220208
|
|
17
|
+
projen/python/__init__.py,sha256=Qir5Sm6lrXrWSveA26s7iDp57DGa4JLde37I2EZMRJU,220487
|
|
18
|
+
projen/release/__init__.py,sha256=r7qrI9gWkD8MQkBmRIwEiMBqoCQrP8d4v_NPDz15go0,295939
|
|
19
|
+
projen/typescript/__init__.py,sha256=xH0dR6iCbOqSpml8p797k1-by4dUZJkBSxJewHXDpPs,523624
|
|
20
|
+
projen/vscode/__init__.py,sha256=eY_k2L0CXCqe1MKhP9syyb1qJyESBFg4ru2KlzuJ2m8,70008
|
|
21
|
+
projen/web/__init__.py,sha256=yUiT39q3emLQXMLKpRgW2vX9xdBgTOKyVScr29BJHoI,848698
|
|
22
|
+
projen-0.94.1.data/scripts/projen,sha256=Lpz4VK4dYyappIZshleguy5vJn-SBgQRO4URudoCXvw,356
|
|
23
|
+
projen-0.94.1.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
24
|
+
projen-0.94.1.dist-info/METADATA,sha256=kUOPW5cnhdPetfFV5Jqm79NWEmQMT8MmmCH1GwCn5Bs,79605
|
|
25
|
+
projen-0.94.1.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
26
|
+
projen-0.94.1.dist-info/top_level.txt,sha256=Ul8VGUArFqejE5BMSked3l6NMBO6gjQEWywhM5gw1zw,7
|
|
27
|
+
projen-0.94.1.dist-info/RECORD,,
|
|
Binary file
|
projen-0.93.3.dist-info/RECORD
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
projen/__init__.py,sha256=enk9OVj1wwybFoSxSFFljuOcgiHWh-_izr2fj57oBdw,682920
|
|
2
|
-
projen/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
-
projen/_jsii/__init__.py,sha256=s2pIB-cCGbx-FXpyduW5rBCE_RI-Kn5fBIc9x1hI9mk,1404
|
|
4
|
-
projen/_jsii/projen@0.93.3.jsii.tgz,sha256=OsdlvA6z3sbOQzKVuwnUkO5thHlEkZ-p9gL-34GEaWw,2943268
|
|
5
|
-
projen/awscdk/__init__.py,sha256=UYKtmojaM74EcUGzI9Z7bhYU2x8X5Jzg7PcEMz_CMVE,1133986
|
|
6
|
-
projen/build/__init__.py,sha256=CW4d2sEJXpP5DAOJKdOt8jaRSfdDjiWdb66k8JBsvRI,54225
|
|
7
|
-
projen/cdk/__init__.py,sha256=qCYr2RD-Y7g6n5fx9usQsbcIySNuCPqXAt_aT2m58Q0,538171
|
|
8
|
-
projen/cdk8s/__init__.py,sha256=WmxD0bz3xcdgdKKg_iuWJ4NWow_GHIdg2ZY4FncAfOk,624651
|
|
9
|
-
projen/cdktf/__init__.py,sha256=-DV__m-1Um_Du008d8FWKxcF0nu_0lHIwImOZM-sQ1o,238007
|
|
10
|
-
projen/circleci/__init__.py,sha256=RvY_jD_QyDzURlD54vqebZrodhRv86Mn-I_YKH9ccw4,77781
|
|
11
|
-
projen/github/__init__.py,sha256=3QsckjxLjN3dXgMtcZIstIxBX8YlKDV75rZkydTVUr4,475267
|
|
12
|
-
projen/github/workflows/__init__.py,sha256=FvVHeCQ1lGQaMoXNsAQSOomS80eM5KO53JzEMRRJMtk,270268
|
|
13
|
-
projen/gitlab/__init__.py,sha256=BiiBQonVYZgdGo3NLXxJ6WcW47UuGQjBkTRLGm09Ozk,207826
|
|
14
|
-
projen/java/__init__.py,sha256=Y8yfXiL4RNXtxIc0LB7O3K0CKyw9TkQKkVXgJ57A9Fw,195299
|
|
15
|
-
projen/javascript/__init__.py,sha256=Tf45YS4Fe_lP6U88IA7y0UlugP9IfV2zcYiav0IZ_U0,893229
|
|
16
|
-
projen/javascript/biome_config/__init__.py,sha256=HatY6bMNQ0sbZJEDn147vsXm9udCQ4VqUy0BmJswH1c,903934
|
|
17
|
-
projen/python/__init__.py,sha256=Qir5Sm6lrXrWSveA26s7iDp57DGa4JLde37I2EZMRJU,220487
|
|
18
|
-
projen/release/__init__.py,sha256=r7qrI9gWkD8MQkBmRIwEiMBqoCQrP8d4v_NPDz15go0,295939
|
|
19
|
-
projen/typescript/__init__.py,sha256=1CiWMyFGWfs_Uv_s-wMzMj6iuwWKB8UOrbkifECacjo,504340
|
|
20
|
-
projen/vscode/__init__.py,sha256=eY_k2L0CXCqe1MKhP9syyb1qJyESBFg4ru2KlzuJ2m8,70008
|
|
21
|
-
projen/web/__init__.py,sha256=HaU07EvLbpP3u_Sxjpb5_wDZTIl78nDCKSwvdYj4Sv4,848536
|
|
22
|
-
projen-0.93.3.data/scripts/projen,sha256=3kFKoDWCXjgVBs7PiXxjfTa3j4ygoExR-xc04U_Af5w,356
|
|
23
|
-
projen-0.93.3.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
24
|
-
projen-0.93.3.dist-info/METADATA,sha256=mfM7Hv3DSY8pPAJdcfsHQdh1OXlM4mXqqDiRHJJjIZ8,79605
|
|
25
|
-
projen-0.93.3.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
26
|
-
projen-0.93.3.dist-info/top_level.txt,sha256=Ul8VGUArFqejE5BMSked3l6NMBO6gjQEWywhM5gw1zw,7
|
|
27
|
-
projen-0.93.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|