Skip to content

Instantly share code, notes, and snippets.

@dkr88
Last active June 6, 2018 00:09
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 dkr88/5075c384147e2d30d591e8d5ea5000b8 to your computer and use it in GitHub Desktop.
Save dkr88/5075c384147e2d30d591e8d5ea5000b8 to your computer and use it in GitHub Desktop.
Sample tsconfig.json for Quasar
{
"compilerOptions": {
// this aligns with Vue's browser support
"target": "es5",
// this enables stricter inference for data properties on `this`
"strict": false,
// if using webpack 2+ or rollup, to leverage tree shaking:
"module": "es2015",
"moduleResolution": "node",
"lib": [
"es5" // core library
],
"allowJs": true,
"experimentalDecorators": true,
"sourceMap": true,
"baseUrl": ".",
"typeRoots": [
"node_modules/@types"
]
},
"include": [
"./src/**/*"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment