next-awesome-typescript

Plugin for Next.js v5 for using typescript with awesome-typescript-loader

Downloads
25
Stars
24
Committers
6

Bot releases are hidden (Show)

next-awesome-typescript - v0.3.2 Pin Next.js to 5 Latest Release

Published by saitonakamura over 6 years ago

📌

Pin Next.js to version 5 to address the #8

next-awesome-typescript - v0.3.1 Fix typings

Published by saitonakamura over 6 years ago

🐛

Thanks @Gavinchen92 for the #7

next-awesome-typescript - v0.3.0 Merge of next and next-awesome-typescript configurations

Published by saitonakamura over 6 years ago

💥 Merge of next and next-awesome-typescript configurations

Before

const options = {
  useCheckerPlugin: true,
  loaderOptions: {
    transpileOnly: false,
  },
};

module.exports = withAwesomeTypescript(options, withCSS({
  cssModules: true,
  cssLoaderOptions: {
    importLoaders: 1,
  }
}));

After

const awesomeTypescriptOptions = {
  useCheckerPlugin: true,
  loaderOptions: {
    transpileOnly: false,
  },
};

module.exports = withAwesomeTypescript(withCSS({
  cssModules: true,
  cssLoaderOptions: {
    importLoaders: 1,
  },
 awesomeTypescriptOptions
}));

Thanks @lonyele for the #5

next-awesome-typescript - v0.2.2 Fix TS definition

Published by saitonakamura over 6 years ago

🐛

Thanks @jupl for the #4

next-awesome-typescript - v0.2.0 transfer babel-loader in useBabel option

Published by saitonakamura over 6 years ago

💥

next-awesome-typescript - v0.1.0 `transpileOnly` is `true` by default

Published by saitonakamura over 6 years ago

💥

next-awesome-typescript - v0.0.2 Initial Release

Published by saitonakamura over 6 years ago

🎉