Current Behavior
When I set experimentalDecorators to true in tsconfig.json it works ok for files in "src", but it doesn't work for files in "test" (vscode marks decorators in red, but it works ok when running 'test')
Desired Behavior
When experimentalDecorators is set to true in tsconfig.json it should also be for vscode test files
Suggested Solution
Add a tsconfig.json file to the tests folder:
{
"extends": "../tsconfig.json",
"include": ["."]
}
with any other overrides that might be needed to make tests work and make jest use that one.
Who does this impact? Who is this for?
Libs that use experimental decorators
Describe alternatives you've considered
N/A
Additional context
N/A
Current Behavior
When I set experimentalDecorators to true in tsconfig.json it works ok for files in "src", but it doesn't work for files in "test" (vscode marks decorators in red, but it works ok when running 'test')
Desired Behavior
When experimentalDecorators is set to true in tsconfig.json it should also be for vscode test files
Suggested Solution
Add a tsconfig.json file to the tests folder:
with any other overrides that might be needed to make tests work and make jest use that one.
Who does this impact? Who is this for?
Libs that use experimental decorators
Describe alternatives you've considered
N/A
Additional context
N/A