Skip to content

Commit

Permalink
refactor: back to ts-loader from swc-loader
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuki Shimada committed Mar 24, 2023
1 parent 9c1a757 commit f4a0c6e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"devcontainer",
"effekseer",
"eqeqeq",
"esmdev",
"esmodule",
"fovy",
"fxaa",
Expand Down
2 changes: 1 addition & 1 deletion config/webpack/webpack.config.base.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module.exports = {
{
test: /\.ts$/,
exclude: [/node_modules/],
loader: 'swc-loader',
loader: 'ts-loader',
},
],
},
Expand Down
2 changes: 1 addition & 1 deletion samples/simple/BasisTexture/main.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Rn from '../../../dist/esm/index.js';
import Rn from '../../../dist/esmdev/index.js';

let p: any;

Expand Down

0 comments on commit f4a0c6e

Please sign in to comment.