Created
January 20, 2019 10:01
-
-
Save hmsk/f26dcb43c20bde595e8697db6aa1e372 to your computer and use it in GitHub Desktop.
Typical tsconfig for Nuxt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"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