Lightening fast type checking and linting with TypeScript and TSLint.
yarn add nuxt-typescript typescript tslint --dev
Add nuxt-typescript to Nuxt’s config:
// nuxt.config.js
module.exports = {
modules: ["nuxt-typescript"]
}
Configure tsconfig.json with the following settings:
{
"compilerOptions": {
"jsx": "preserve",
"target": "es2015",
"module": "es2015",
"moduleResolution": "node",
"baseUrl": ".",
"paths": {
"~/*": ["./*"],
"@/*": ["./*"]
},
"allowJs": true,
"sourceMap": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"removeComments": true,
"strictNullChecks": true,
"experimentalDecorators": true
}
}
Now you can use TypeScript in your Nuxt project:
// core/utils.ts
export function reverseString(value: string) {
return value
.split("")
.reverse()
.join("")
}
// store/index.ts
export const state = () => ({
title: "Nuxt + TypeScript"
})
<template>
<div>
<h1 v-text="title"/>
<input v-model="input"/>
<pre v-text="reversed"/>
</div>
</template>
<script lang="ts">
import { State } from 'vuex-class'
import { Component, Vue } from 'nuxt-property-decorator'
import { reverseString } from '~/core/utils'
@Component
export default class extends Vue {
@State public title: string
public input = 'TypeScript'
head() {
return {
title: this.title
}
}
get reversed(): string {
return reverseString(this.input)
}
}
</script>
undefinedCheck out the working example.undefined
If you want to use TSLint to lint your TypeScript files, simply create a tslint.json file at the root of your project:
{
"defaultSeverity": "warning",
"extends": ["tslint:latest"]
}
It is recommended that you set defaultSeverity to “warning” so that linting errors can be distinguished from type errors.
Options can be passed to nuxt-typescript via a typescript object in the Nuxt config file:
// nuxt.config.js
module.exports = {
modules: ["nuxt-typescript"],
typescript: {
formatter: "default"
}
}
| Option | Type | Default | Description |
|---|---|---|---|
tsconfig |
String |
“tsconfig.json” | Path to TypeScript config file. |
tslint |
String |
“tslint.json” | Path to TSLint config file. |
formatter |
String |
“codeframe” | TSLint formatter to use. Either “default” or “codeframe”. |
parallel |
Boolean |
true |
Enable/disable thread-loader for production builds. |
Thanks to Evan You and Kevin Petit for their work on the Vue CLI TypeScript plugin from which a lot of the implementation is based.
Thanks to John Lindquist for creating the Nuxt TypeScript example that got this project started.
We use cookies
We use cookies to analyze traffic and improve your experience. You can accept or reject analytics cookies.