We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b1786b commit 1daf057Copy full SHA for 1daf057
src/config-builder/rules/typescript.ts
@@ -1,5 +1,8 @@
1
import * as webpack from "webpack";
2
export const typescript: webpack.Rule = {
3
test: /\.(ts|tsx)?$/,
4
- use: { loader: "ts-loader", options: {onlyCompileBundledFiles: true, allowTsInNodeModules: true} },
+ use: {
5
+ loader: "ts-loader",
6
+ options: { onlyCompileBundledFiles: true, allowTsInNodeModules: true },
7
+ },
8
};
0 commit comments