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