Skip to content

Instantly share code, notes, and snippets.

@hmsk
Created January 20, 2019 10:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hmsk/f26dcb43c20bde595e8697db6aa1e372 to your computer and use it in GitHub Desktop.
Save hmsk/f26dcb43c20bde595e8697db6aa1e372 to your computer and use it in GitHub Desktop.
Typical tsconfig for Nuxt
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "es2015"],
"module": "es2015",
"moduleResolution": "node",
"experimentalDecorators": true,
"noImplicitAny": false,
"noImplicitThis": false,
"strictNullChecks": true,
"removeComments": true,
"suppressImplicitAnyIndexErrors": true,
"allowSyntheticDefaultImports": true,
"allowJs": true,
"baseUrl": ".",
"paths": {
"~/*": ["./*"]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment