Nuxt v2.9 + Typescriptの環境構築
Nuxt2.9 + Typescript 環境構築の備忘録です。
執筆時のバージョンはNuxt2.9.2です。
2.8 => 2.9でTypescriptのインストール方法が異なるため、
調べて出てくるのが2.8以前の情報だったりで頭がバグりそうになったのでまとめます。
はじめに
執筆中にこちらの記事とほぼ同じことに気づきました
むしろ本記事より丁寧ですので是非ご参考ください
作りたい環境
- SPAモード
- ESLint
- vue-property-decoratorによるクラスベース記法
Nuxt2.9について
Nuxt2.9以降では、以下のパッケージでTypescriptをサポートする
-
@nuxt/typescript-build
layouts、components、plugins、middlewaresでTypescriptを使用するためのNuxtモジュール -
@nuxt/typescript-runtime
nuxt.configファイル、local modules、serverMiddlewaresのTypeScriptランタイムサポートを提供するNuxtラッパーバイナリ -
@nuxt/types
型定義ファイル
@nuxt/typescript-build
に梱包されているので個別でのインストールは不要
要は@nuxt/typescript-build
と@nuxt/typescript-runtime
を入れて設定をちょこちょこっとすればいいってことね。
手順
プロジェクトの作成
npx create-nuxt-app ts-test
# OR
yarn create nuxt-app ts-test
cd ./ts-test
npx create-nuxt-app ts-test
# OR
yarn create nuxt-app ts-test
cd ./ts-test
SPAモードで、ESLintとPrettierを入れた
設定内容
Npm
None
None
Axios
PWA
ESLiint
Prettier
None
Single Page App
jsconfig.json
セットアップ
基本的に公式を参考に進める
@nuxt/typescript-build
npm install --save-dev @nuxt/typescript-build
# OR
yarn add --dev @nuxt/typescript-build
nuxt.config.js
のbuildModules
に以下を記述。
今回ESLintを入れているのでこんな感じ。
export default {
// 中略
buildModules: [
// Doc: https://github.com/nuxt-community/eslint-module
'@nuxtjs/eslint-module',
'@nuxt/typescript-build'
],
// 中略
}
tsconfig.json
を公式のとおり作成。
typesを見ると@nuxt/types
が参照されているのが分かる。
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"lib": [
"esnext",
"esnext.asynciterable",
"dom"
],
"esModuleInterop": true,
"allowJs": true,
"sourceMap": true,
"strict": true,
"noEmit": true,
"baseUrl": ".",
"paths": {
"~/*": [
"./*"
],
"@/*": [
"./*"
]
},
"types": [
"@types/node",
"@nuxt/types"
]
},
"exclude": [
"node_modules"
]
}
@nuxt/typescript-runtime
npm install @nuxt/typescript-runtime
# OR
yarn add @nuxt/typescript-runtime
package.json
のscripts
を、nuxt
=> nuxt-ts
に書き換える。
"scripts": {
"dev": "nuxt-ts",
"build": "nuxt-ts build",
"generate": "nuxt-ts generate",
"start": "nuxt-ts start"
}
nuxt.config.js
=> nuxt.config.ts
に変更。
tsファイルにすると、extend(config, ctx) {}
の部分が暗黙的anyで怒られた。
Parameter 'config' implicitly has an 'any' type.
Parameter 'ctx' implicitly has an 'any' type.
以下のように明示してあげるか、
もしくは、不要であればextend~~
部分をコメントアウトしても可。
build: {
/*
** You can extend webpack config here
*/
- extend(config, ctx) {}
+ extend(config: any, ctx: any) {}
}
つづけて、nuxt.config.ts
に以下を追加
typescript: {
typeCheck: true,
ignoreNotFoundWarnings: true
}
vue-property-decorator
npm install --save-dev vue-property-decorator
# OR
yarn add --dev vue-property-decorator
tsconfig.json
にexperimentalDecorators
を追加
{
"compilerOptions": {
+ "experimentalDecorators": true,
}
}
@nuxtjs/eslint-config-typescript
すでに@nuxtjs/eslint-config
がインストールされていたら、これはアンインストールする
(@nuxtjs/eslint-config-typescript
に含まれてる)
npm uninstall @nuxtjs/eslint-config
# OR
yarn remove @nuxtjs/eslint-config
npm i -D @nuxtjs/eslint-config-typescript
# OR
yarn add -D @nuxtjs/eslint-config-typescript
package.json
のscriptsの、lintを修正
"scripts": {
"dev": "nuxt-ts",
"build": "nuxt-ts build",
"start": "nuxt-ts start",
"generate": "nuxt-ts generate",
- "lint": "eslint --ext .js,.vue --ignore-path .gitignore ."
+ "lint": "eslint --ext .ts,.js,.vue --ignore-path .gitignore ."
}
.eslintrc.js
を修正
parser
をbabel-eslint
=> @typescript-eslint/parser
にする必要があるが、
これは@nuxtjs/eslint-config-typescript
の構成に入っているので記述不要(なはず)
extends
の@nuxtjs
も同様の理由で削除
parserOptions: {
- parser: 'babel-eslint'
},
extends: [
- '@nuxtjs',
+ '@nuxtjs/eslint-config-typescript',
'prettier',
'prettier/vue',
'plugin:prettier/recommended',
'plugin:nuxt/recommended'
],
動作確認
Logo.vueとindex.vueのscript部分をtypescriptに書き換える
<script lang="ts">
import { Vue, Component } from 'vue-property-decorator'
@Component
export default class Logo extends Vue {}
</script>
<script lang="ts">
import { Vue, Component } from 'vue-property-decorator'
import Logo from '~/components/Logo.vue'
@Component({
components: {
Logo
}
})
export default class IndexPage extends Vue {}
</script>
うごいた~~
一応躓いたエラーまとめ
躓き1
Module parse failed: Unexpected character '@' 以下略
=>
package.json
のscripts
を、nuxt
=> nuxt-ts
に書き換え
躓き2
Parsing error: Using the export keyword between a decorator and a class is not allowed. Please use `export @dec class` instead.
=>
ESLintのパーサがbabel-eslint
のままだった
参考
Author And Source
この問題について(Nuxt v2.9 + Typescriptの環境構築), 我々は、より多くの情報をここで見つけました https://qiita.com/yoh_zzzz/items/9e2611b7a994427474f6著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .