Skip to content

Instantly share code, notes, and snippets.

@rolandoesc
Last active February 6, 2020 21:00
Show Gist options
  • Save rolandoesc/aab6ccbee3bf40699234b4c2491937e0 to your computer and use it in GitHub Desktop.
Save rolandoesc/aab6ccbee3bf40699234b4c2491937e0 to your computer and use it in GitHub Desktop.
TS Config actual
{
"name": "portal-front",
"version": "0.1.0",
"private": true,
"scripts": {
"prebuild": "rm -rf node_modules package-lock.json && npm install",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@sentry/browser": "^5.11.0",
"@sentry/integrations": "^5.11.1",
"@vue/cli-plugin-typescript": "^4.0.5",
"@vue/cli-service": "^3.9.0",
"axios": "^0.19.0",
"chilli-pepper": "^1.2.0",
"core-js": "^2.6.5",
"core-util-is": "^1.0.2",
"dgram": "^1.0.1",
"radclient": "^1.0.0",
"radius": "^1.1.4",
"vue": "^2.6.11",
"vue-axios": "^2.1.5",
"vue-class-component": "^7.0.2",
"vue-property-decorator": "^8.3.0",
"vue-resource": "^1.5.1",
"vue-router": "^3.0.3",
"vuetify": "^1.5.5",
"vuex": "^3.0.1",
"webpack-dev-server": "^3.9.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.9.0",
"@vue/cli-plugin-eslint": "^3.9.0",
"@vue/cli-plugin-typescript": "^4.0.5",
"@vue/cli-service": "^3.9.0",
"@vue/eslint-config-typescript": "^4.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"typescript": "~3.5.3",
"vue-cli-plugin-vuetify": "^0.5.0",
"vue-template-compiler": "^2.6.11",
"vuetify-loader": "^1.0.5"
}
}
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
"types": [
"webpack-env",
"vuetify"
],
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
"exclude": [
"node_modules",
"dotenv"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment