Skip to content
This repository was archived by the owner on Jul 10, 2019. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 10 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"version": "0.0.1",
"description": "My gnarly Nuxt.js project",
"scripts": {
"dev": "cross-env NODE_ENV=development nuxt-ts",
"build": "nuxt-ts build",
"build:static": "nuxt-ts build --spa",
"build:dev": "cross-env NODE_ENV=development nuxt-ts build",
"build:stg": "cross-env NODE_ENV=staging nuxt-ts build",
"build:prod": "cross-env NODE_ENV=production nuxt-ts build",
"start": "nuxt-ts start",
"dev": "cross-env NODE_ENV=development nuxt",
"build": "nuxt build",
"build:static": "nuxt build --spa",
"build:dev": "cross-env NODE_ENV=development nuxt build",
"build:stg": "cross-env NODE_ENV=staging nuxt build",
"build:prod": "cross-env NODE_ENV=production nuxt build",
"start": "nuxt start",
"lint": "eslint --ext .js,.ts,.vue --ignore-path .gitignore .",
"lintfix": "eslint --fix --ext .js,.ts,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
Expand Down Expand Up @@ -43,23 +43,24 @@
"url": "git+https://github.com/hisasann/typescript-nuxtjs-boilerplate.git"
},
"keywords": [
"nuxt-ts",
"nuxt",
"typescript"
],
"bugs": {
"url": "https://github.com/hisasann/typescript-nuxtjs-boilerplate/issues"
},
"dependencies": {
"@nuxt/typescript": "^2.5.1",
"@nuxtjs/axios": "^5.4.1",
"@nuxtjs/pwa": "^3.0.0-beta.14",
"@types/webpack": "^4.4.26",
"cross-env": "^5.2.0",
"express": "^4.16.4",
"js-cookie": "^2.2.0",
"nuxt": "^2.5.1",
"nuxt-client-init-module": "^0.1.4",
"nuxt-env": "^0.1.0",
"nuxt-property-decorator": "^2.1.3",
"nuxt-ts": "^2.4.5",
"vue-lazyload": "^1.2.6"
},
"devDependencies": {
Expand Down
25 changes: 20 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"extends": "@nuxt/typescript",
"compilerOptions": {
"allowJs": true,
"baseUrl": ".",
Expand All @@ -16,7 +15,12 @@
"@/*": [
"src/*"
],
"*": ["types/*"]
"~/*": [
"./*"
],
"*": [
"types/*"
]
},
"sourceMap": true,
"strictNullChecks": true,
Expand All @@ -27,8 +31,19 @@
"@types/jest",
"@types/webpack",
"@nuxt/vue-app"
]
],
"esModuleInterop": true,
"strict": true,
"noImplicitAny": false,
"noEmit": true
},
"include": ["src/**/*.ts", "src/**/*.vue", "types/**/*.d.ts"],
"exclude": ["node_modules", "stories"]
"include": [
"src/**/*.ts",
"src/**/*.vue",
"types/**/*.d.ts"
],
"exclude": [
"node_modules",
"stories"
]
}
Loading