@tsconfig/nuxt

2.0.3 • Public • Published

A base TSConfig for working with Nuxt.

Add the package to your "devDependencies":

npm install --save-dev @tsconfig/nuxt
yarn add --dev @tsconfig/nuxt

Add to your tsconfig.json:

"extends": "@tsconfig/nuxt/tsconfig.json"

NOTE: You may need to add "baseUrl": "." to your tsconfig.json to support proper file resolution.


The tsconfig.json:

{
  "$schema": "https://json.schemastore.org/tsconfig",
  "_version": "2.0.0",
  
  "compilerOptions": {
    "target": "esnext",
    "module": "esnext",
    "moduleResolution": "bundler",
    "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", 
    "dist"
  ]
}

You can find the code here.

Readme

Keywords

Package Sidebar

Install

npm i @tsconfig/nuxt

Weekly Downloads

73

Version

2.0.3

License

MIT

Unpacked Size

3.13 kB

Total Files

4

Last publish

Collaborators

  • orta
  • typescript-deploys