File tree 8 files changed +17
-13
lines changed
System.Web.Optimization.React
8 files changed +17
-13
lines changed Original file line number Diff line number Diff line change 1
- /*
1
+ /*
2
2
* Copyright (c) Facebook, Inc. and its affiliates.
3
3
*
4
4
* This source code is licensed under the MIT license found in the
@@ -37,7 +37,7 @@ public class BabelFileOptions
37
37
/// </summary>
38
38
public BabelFileOptions ( )
39
39
{
40
- Extensions = new [ ] { ".jsx" } ;
40
+ Extensions = new [ ] { ".jsx" , ".tsx" } ;
41
41
StaticFileOptions = new StaticFileOptions ( ) ;
42
42
}
43
43
}
Original file line number Diff line number Diff line change 1
- /*
1
+ /*
2
2
* Copyright (c) Facebook, Inc. and its affiliates.
3
3
*
4
4
* This source code is licensed under the MIT license found in the
@@ -17,7 +17,7 @@ public static void RegisterBundles(BundleCollection bundles)
17
17
{
18
18
bundles . Add ( new BabelBundle ( "~/bundles/main" ) . Include (
19
19
// Add your JSX files here
20
- "~/Content/Sample.jsx "
20
+ "~/Content/Sample.tsx "
21
21
) ) ;
22
22
23
23
// Force minification/combination even in debug mode
Original file line number Diff line number Diff line change @@ -20,7 +20,8 @@ public static void Configure()
20
20
. SetReuseJavaScriptEngines ( true )
21
21
. SetAllowJavaScriptPrecompilation ( true )
22
22
. AddScriptWithoutTransform ( "~/Content/lib/reactstrap.min.js" )
23
- . AddScript ( "~/Content/Sample.jsx" ) ;
23
+ . SetBabelVersion ( "babel-7" )
24
+ . AddScript ( "~/Content/Sample.tsx" ) ;
24
25
25
26
JsEngineSwitcher . Current . DefaultEngineName = V8JsEngine . EngineName ;
26
27
JsEngineSwitcher . Current . EngineFactories . AddV8 ( ) ;
Original file line number Diff line number Diff line change 7
7
* of patent rights can be found in the PATENTS file in the same directory.
8
8
*/
9
9
10
+ type Foo = { }
11
+
10
12
function CommentsBox ( props ) {
11
13
let [ state , updateState ] = React . useState ( {
12
14
comments : props . initialComments ,
Original file line number Diff line number Diff line change 175
175
<Content Include =" Views\Home\Index.cshtml" />
176
176
</ItemGroup >
177
177
<ItemGroup >
178
- <Content Include =" Content\Sample.jsx " />
178
+ <None Include =" Content\Sample.tsx " />
179
179
</ItemGroup >
180
180
<ItemGroup >
181
181
<Content Include =" TransformBabel.proj" />
Original file line number Diff line number Diff line change 33
33
<add namespace =" System.Web.WebPages" />
34
34
</namespaces >
35
35
</pages >
36
-
37
- <httpHandlers >
38
- <add verb =" GET" path =" *.jsx" type =" React.Web.BabelHandlerFactory, React.Web" />
39
- </httpHandlers >
40
36
</system .web>
41
37
42
38
<system .webServer>
47
43
<handlers >
48
44
<remove name =" babel" />
49
45
<add name =" babel" verb =" GET" path =" *.jsx" type =" React.Web.BabelHandlerFactory, React.Web" preCondition =" integratedMode" />
46
+ <add name =" babel-tsx" verb =" GET" path =" *.tsx" type =" React.Web.BabelHandlerFactory, React.Web" preCondition =" integratedMode" />
50
47
</handlers >
51
48
52
49
</system .webServer>
Original file line number Diff line number Diff line change 1
- /*
1
+ /*
2
2
* Copyright (c) Facebook, Inc. and its affiliates.
3
3
*
4
4
* This source code is licensed under the MIT license found in the
5
5
* LICENSE file in the root directory of this source tree.
6
6
*/
7
7
8
8
using React ;
9
+ using System . Linq ;
9
10
10
11
namespace System . Web . Optimization . React
11
12
{
@@ -23,7 +24,10 @@ public class BabelTransform : IBundleTransform
23
24
public void Process ( BundleContext context , BundleResponse response )
24
25
{
25
26
var environment = ReactEnvironment . Current ;
26
- response . Content = environment . Babel . Transform ( response . Content ) ;
27
+ response . Content = environment . Babel . Transform (
28
+ response . Content ,
29
+ response . Files . Any ( x => x . IncludedVirtualPath . Contains ( "tsx" ) ) ? "components.tsx" : "components.jsx"
30
+ ) ;
27
31
}
28
32
}
29
33
}
Original file line number Diff line number Diff line change 1
- using System ;
1
+ using System ;
2
2
using System . Collections . Generic ;
3
3
using System . Linq ;
4
4
using System . Threading . Tasks ;
You can’t perform that action at this time.
0 commit comments