Skip to content

Releases: saitonakamura/next-awesome-typescript

v0.3.2 Pin Next.js to 5

04 Jun 20:47
Compare
Choose a tag to compare

📌

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

v0.3.1 Fix typings

02 May 21:50
Compare
Choose a tag to compare

🐛

Thanks @Gavinchen92 for the #7

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

29 Apr 16:06
Compare
Choose a tag to compare

💥 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

v0.2.2 Fix TS definition

29 Apr 07:15
Compare
Choose a tag to compare

🐛

Thanks @jupl for the #4

v0.2.0 transfer babel-loader in useBabel option

29 Apr 07:14
Compare
Choose a tag to compare

v0.1.0 `transpileOnly` is `true` by default

29 Apr 07:13
Compare
Choose a tag to compare

v0.0.2 Initial Release

29 Apr 07:11
Compare
Choose a tag to compare