- starting project list...

- ordering some functions
- fix error TS2339

quasar.extensions.json was the problem !
inside had:
{
  "@quasar/typescript": {
    "webpack": "plugin",
    "rename": true
  }
}
This commit is contained in:
Paolo Arena
2019-03-21 20:43:15 +01:00
parent 1fd56419a4
commit eda9a8514f
53 changed files with 28076 additions and 726 deletions

View File

@@ -1,17 +1,21 @@
{
"compilerOptions": {
"module": "esnext",
"target": "es2016",
"target": "es2015",
"importHelpers": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"emitDecoratorMetadata": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"removeComments": true,
"noImplicitAny": false,
"noUnusedLocals": false,
// "noUnusedParameters": true,
"pretty": true,
"noImplicitThis": true,
"strict": false,
"noImplicitThis": false,
"strictNullChecks": false,
"suppressImplicitAnyIndexErrors": true,
"lib": [
"dom",
"es5",
@@ -25,13 +29,14 @@
"paths": {
"@src/*": ["./*"],
"@components": ["./components/index.ts"],
"@css/*": ["./statics/css/*"],
"@css/*": ["./statics/css/variables.scss"],
"@icons/*": ["./statics/icons/*"],
"@images/*": ["./statics/images/*"],
"@js/*": ["./statics/js/*"],
"@classes": ["./classes/index.ts"],
"@utils/*": ["./utils/*"],
"@validators": ["./utils/validators.ts"],
"@methods": ["./utils/methods.ts"],
"@router": ["./router/index.ts"],
"@paths": ["./store/Api/ApiRoutes.ts"],
"@types": ["./typings/index.ts"],
@@ -42,6 +47,9 @@
"sourceMap": true,
// "usePostCSS": true,
"allowJs": true,
// "checkJs": true,
// "noEmit": true,
// "strict": true,
"skipLibCheck": true,
"types": [
"node",
@@ -59,5 +67,5 @@
"dist",
"node_modules"
],
"compileOnSave": true
"compileOnSave": false
}