Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wagerfield/nuxt-typescript
TypeScript module for Nuxt
https://github.com/wagerfield/nuxt-typescript
Last synced: 3 days ago
JSON representation
TypeScript module for Nuxt
- Host: GitHub
- URL: https://github.com/wagerfield/nuxt-typescript
- Owner: wagerfield
- License: mit
- Created: 2018-05-22T18:31:25.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-31T01:40:59.000Z (over 4 years ago)
- Last Synced: 2024-10-28T09:15:14.480Z (7 days ago)
- Language: JavaScript
- Size: 148 KB
- Stars: 90
- Watchers: 10
- Forks: 11
- Open Issues: 14
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# Nuxt TypeScript Module
Lightening fast type checking and linting with [TypeScript][typescript] and [TSLint][tslint].
```bash
yarn add nuxt-typescript typescript tslint --dev
```Add `nuxt-typescript` to Nuxt's config:
```js
// nuxt.config.js
module.exports = {
modules: ["nuxt-typescript"]
}
```Configure `tsconfig.json` with the following settings:
```json
{
"compilerOptions": {
"jsx": "preserve",
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"baseUrl": ".",
"paths": {
"~/*": ["./*"],
"@/*": ["./*"]
},
"strict": true,
"sourceMap": true,
"noUnusedLocals": true,
"experimentalDecorators": true
}
}
```Now you can use TypeScript in your Nuxt project:
```ts
// core/utils.ts
export function reverseString(value: string) {
return value
.split("")
.reverse()
.join("")
}
``````ts
// store/index.ts
export const state = () => ({
title: "Nuxt + TypeScript"
})
``````html
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)
}
}```
**Check out the [working example](example).**
## TSLint
If you want to use [TSLint][tslint] to lint your TypeScript files, simply create a `tslint.json` file at the root of your project:
```json
{
"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
Options can be passed to `nuxt-typescript` via a `typescript` object in the Nuxt config file:
```js
// 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. |
| `checker` | `Boolean` | `true` | Enable/disable the TypeScript checker webpack plugin. |
| `babel` | `Object` | `null` | Babel configuration options to be merged with Nuxt's defaults. |## Credits
Thanks to [Evan You][evanyou] and [Kevin Petit][kevinpetit] for their work on the [Vue CLI TypeScript plugin][vue-cli-typescript] from which a lot of the implementation is based.
Thanks to [John Lindquist][johnlindquist] for creating the [Nuxt TypeScript example][nuxt-typescript-example] that got this project started.
## Author
[Matthew Wagerfield][wagerfield]
## License
[MIT][mit]
[nuxt]: https://nuxtjs.org
[tslint]: https://palantir.github.io/tslint
[typescript]: http://www.typescriptlang.org
[nuxt-typescript-example]: https://github.com/nuxt/nuxt.js/tree/dev/examples/typescript
[vue-cli-typescript]: https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-typescript
[evanyou]: https://github.com/yyx990803
[johnlindquist]: https://github.com/johnlindquist
[kevinpetit]: https://github.com/kvpt
[wagerfield]: https://github.com/wagerfield
[mit]: https://opensource.org/licenses/MIT