Nuxt.js에 TypeScript를 도입하는 절차 요약
13213 단어 TypeScriptVue.js자바스크립트nuxt.jsESLint
Nuxt.js 버전은
2.11.0
, typescript 버전은 3.7.4
입니다.우선 Nuxt.js 프로젝트 만들기
설정은 적절하게 변경하십시오.
# プロジェクト作成
npx create-nuxt-app nuxt-ts-sample
> Generating Nuxt.js project in nuxt-ts-sample
? Project name nuxt-ts-sample
? Project description My astounding Nuxt.js project
? Author name itouuuuuuuuu
? Choose the package manager Npm
? Choose UI framework Element
? Choose custom server framework None (Recommended)
? Choose Nuxt.js modules Axios
? Choose linting tools ESLint
? Choose test framework None
? Choose rendering mode Universal (SSR)
? Choose development tools jsconfig.json (Recommended for VS Code)
typescript-build 설치
먼저 typescript-build를 설치합니다.
npm install --save-dev @nuxt/typescript-build
그런 다음 nuxt.config.js
의 buildModules
위치에 설정을 추가합니다.
nuxt.config.jsexport default {
buildModules: ['@nuxt/typescript-build']
}
typescript-runtime 설치
npm install --save-dev @nuxt/typescript-runtime
설치가 완료되면 package.json
scripts를 nuxt
에서 nuxt-ts
로 다시 씁니다.
package.json"scripts": {
"dev": "nuxt-ts",
"build": "nuxt-ts build",
"generate": "nuxt-ts generate",
"start": "nuxt-ts start"
}
nuxt.config.ts 설정
nuxt.config.js
의 파일 이름을 nuxt.config.ts
로 변경합니다.
또, extend(config, ctx) {}
로 형을 지정하지 않으면 에러가 되므로, 지정해 줍니다.
nuxt.config.ts.diff build: {
- extend(config, ctx) {}
+ extend(config: any, ctx: any) {}
}
nuxt.config.ts
에 다음을 추가합니다.
nuxt.config.tstypescript: {
typeCheck: true,
ignoreNotFoundWarnings: true
}
eslint-config-typescript 설치
npm install --save-dev @nuxtjs/eslint-config-typescript
이어서 package.json
의 script
의 lint
를 수정합니다.
package.json.diff "scripts": {
- "lint": "eslint --ext .js,.vue --ignore-path .gitignore ."
+ "lint": "eslint --ext .ts,.js,.vue --ignore-path .gitignore ."
}
eslintrc.js
의 extends
에 다음을 추가합니다.@nuxtjs
가 있으면 삭제합니다.
eslintrc.js.diff extends: [
- '@nuxtjs',
+ '@nuxtjs/eslint-config-typescript',
],
필요한 파일 추가
tsconfig.json
파일을 루트 바로 아래에 만듭니다.
tsconfig.json{
"compilerOptions": {
"target": "es2018",
"module": "esnext",
"moduleResolution": "node",
"lib": [
"esnext",
"esnext.asynciterable",
"dom"
],
"esModuleInterop": true,
"allowJs": true,
"sourceMap": true,
"strict": true,
"noEmit": true,
"baseUrl": ".",
"paths": {
"~/*": [
"./*"
],
"@/*": [
"./*"
]
},
"types": [
"@types/node",
"@nuxt/types"
]
},
"exclude": [
"node_modules"
]
}
Element 문제 해결
UI 프레임워크에 Element
를 사용하지 않는 경우 이 항목을 건너뛸 수 있습니다.Element
를 선택한 경우 npm run dev
를 실행하면 아래와 같은 오류가 발생합니다.
92:18 Interface 'NuxtApp' incorrectly extends interface 'Vue'.
Types of property '$loading' are incompatible.
Type 'NuxtLoading' is not assignable to type '(options: LoadingServiceOptions) => ElLoadingComponent'.
Type 'NuxtLoading' provides no match for the signature '(options: LoadingServiceOptions): ElLoadingComponent'.
90 | }
91 |
> 92 | export interface NuxtApp extends Vue {
| ^
93 | $options: NuxtAppOptions
94 | $loading: NuxtLoading
95 | context: Context
ℹ Version: typescript 3.7.4
ℹ Time: 16566ms
이 문제를 해결하려면 tsconfig.json
의 compilerOptions
에 "skipLibCheck": true
를 추가합니다.
tsconfig.json"compilerOptions": {
"skipLibCheck": true,
}
nuxt-property-decorator 설치
클래스를 사용하려면 nuxt-property-decorator를 설치합니다.
npm install --save-dev nuxt-property-decorator
nuxt-property-decorator를 사용하려면 tsconfig.json
의 compilerOptions
에 "experimentalDecorators": true
를 추가하십시오.
tsconfig.json"compilerOptions": {
"experimentalDecorators": true,
}
TypeScript를 사용해보기
pages/index.vue
의 script
의 부분을 TypeScript로 써 봅니다.~/components/Logo.vue
를 import하고 있는 부분에 .vue
를 붙이는 것에 주의해 주세요.
pages/index.vue<script lang="ts">
import { Component, Vue } from 'nuxt-property-decorator'
import Logo from '~/components/Logo.vue' // .vueを忘れずにつける
@Component({
components: {
Logo
}
})
export default class extends Vue { }
</script>
ESLint 문제 해결
ESLint
를 사용하는 경우 npm run dev
를 실행하면 다음과 유사한 오류가 발생합니다.
40:0 error Parsing error: Using the export keyword between a decorator and a class is not allowed. Please use `export @dec class` instead.
8 | },
9 | })
> 10 | export default class extends Vue { }
| ^
11 |
✖ 1 problem (1 error, 0 warnings)
이 문제를 해결하려면 .eslintrc.js
babel-eslint
를 제거합니다.
eslintrc.jsparserOptions: {
parser: 'babel-eslint' // この行を削除
}
확인
http://localhost:3000/ 로 이동하여 아래와 같은 화면을 확인할 수 있으면 완료됩니다!
수고하셨습니다!
Reference
이 문제에 관하여(Nuxt.js에 TypeScript를 도입하는 절차 요약), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/itouuuuuuuuu/items/51fc4f3edbfcd71548a5
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
# プロジェクト作成
npx create-nuxt-app nuxt-ts-sample
> Generating Nuxt.js project in nuxt-ts-sample
? Project name nuxt-ts-sample
? Project description My astounding Nuxt.js project
? Author name itouuuuuuuuu
? Choose the package manager Npm
? Choose UI framework Element
? Choose custom server framework None (Recommended)
? Choose Nuxt.js modules Axios
? Choose linting tools ESLint
? Choose test framework None
? Choose rendering mode Universal (SSR)
? Choose development tools jsconfig.json (Recommended for VS Code)
먼저 typescript-build를 설치합니다.
npm install --save-dev @nuxt/typescript-build
그런 다음
nuxt.config.js
의 buildModules
위치에 설정을 추가합니다.nuxt.config.js
export default {
buildModules: ['@nuxt/typescript-build']
}
typescript-runtime 설치
npm install --save-dev @nuxt/typescript-runtime
설치가 완료되면 package.json
scripts를 nuxt
에서 nuxt-ts
로 다시 씁니다.
package.json"scripts": {
"dev": "nuxt-ts",
"build": "nuxt-ts build",
"generate": "nuxt-ts generate",
"start": "nuxt-ts start"
}
nuxt.config.ts 설정
nuxt.config.js
의 파일 이름을 nuxt.config.ts
로 변경합니다.
또, extend(config, ctx) {}
로 형을 지정하지 않으면 에러가 되므로, 지정해 줍니다.
nuxt.config.ts.diff build: {
- extend(config, ctx) {}
+ extend(config: any, ctx: any) {}
}
nuxt.config.ts
에 다음을 추가합니다.
nuxt.config.tstypescript: {
typeCheck: true,
ignoreNotFoundWarnings: true
}
eslint-config-typescript 설치
npm install --save-dev @nuxtjs/eslint-config-typescript
이어서 package.json
의 script
의 lint
를 수정합니다.
package.json.diff "scripts": {
- "lint": "eslint --ext .js,.vue --ignore-path .gitignore ."
+ "lint": "eslint --ext .ts,.js,.vue --ignore-path .gitignore ."
}
eslintrc.js
의 extends
에 다음을 추가합니다.@nuxtjs
가 있으면 삭제합니다.
eslintrc.js.diff extends: [
- '@nuxtjs',
+ '@nuxtjs/eslint-config-typescript',
],
필요한 파일 추가
tsconfig.json
파일을 루트 바로 아래에 만듭니다.
tsconfig.json{
"compilerOptions": {
"target": "es2018",
"module": "esnext",
"moduleResolution": "node",
"lib": [
"esnext",
"esnext.asynciterable",
"dom"
],
"esModuleInterop": true,
"allowJs": true,
"sourceMap": true,
"strict": true,
"noEmit": true,
"baseUrl": ".",
"paths": {
"~/*": [
"./*"
],
"@/*": [
"./*"
]
},
"types": [
"@types/node",
"@nuxt/types"
]
},
"exclude": [
"node_modules"
]
}
Element 문제 해결
UI 프레임워크에 Element
를 사용하지 않는 경우 이 항목을 건너뛸 수 있습니다.Element
를 선택한 경우 npm run dev
를 실행하면 아래와 같은 오류가 발생합니다.
92:18 Interface 'NuxtApp' incorrectly extends interface 'Vue'.
Types of property '$loading' are incompatible.
Type 'NuxtLoading' is not assignable to type '(options: LoadingServiceOptions) => ElLoadingComponent'.
Type 'NuxtLoading' provides no match for the signature '(options: LoadingServiceOptions): ElLoadingComponent'.
90 | }
91 |
> 92 | export interface NuxtApp extends Vue {
| ^
93 | $options: NuxtAppOptions
94 | $loading: NuxtLoading
95 | context: Context
ℹ Version: typescript 3.7.4
ℹ Time: 16566ms
이 문제를 해결하려면 tsconfig.json
의 compilerOptions
에 "skipLibCheck": true
를 추가합니다.
tsconfig.json"compilerOptions": {
"skipLibCheck": true,
}
nuxt-property-decorator 설치
클래스를 사용하려면 nuxt-property-decorator를 설치합니다.
npm install --save-dev nuxt-property-decorator
nuxt-property-decorator를 사용하려면 tsconfig.json
의 compilerOptions
에 "experimentalDecorators": true
를 추가하십시오.
tsconfig.json"compilerOptions": {
"experimentalDecorators": true,
}
TypeScript를 사용해보기
pages/index.vue
의 script
의 부분을 TypeScript로 써 봅니다.~/components/Logo.vue
를 import하고 있는 부분에 .vue
를 붙이는 것에 주의해 주세요.
pages/index.vue<script lang="ts">
import { Component, Vue } from 'nuxt-property-decorator'
import Logo from '~/components/Logo.vue' // .vueを忘れずにつける
@Component({
components: {
Logo
}
})
export default class extends Vue { }
</script>
ESLint 문제 해결
ESLint
를 사용하는 경우 npm run dev
를 실행하면 다음과 유사한 오류가 발생합니다.
40:0 error Parsing error: Using the export keyword between a decorator and a class is not allowed. Please use `export @dec class` instead.
8 | },
9 | })
> 10 | export default class extends Vue { }
| ^
11 |
✖ 1 problem (1 error, 0 warnings)
이 문제를 해결하려면 .eslintrc.js
babel-eslint
를 제거합니다.
eslintrc.jsparserOptions: {
parser: 'babel-eslint' // この行を削除
}
확인
http://localhost:3000/ 로 이동하여 아래와 같은 화면을 확인할 수 있으면 완료됩니다!
수고하셨습니다!
Reference
이 문제에 관하여(Nuxt.js에 TypeScript를 도입하는 절차 요약), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/itouuuuuuuuu/items/51fc4f3edbfcd71548a5
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
npm install --save-dev @nuxt/typescript-runtime
"scripts": {
"dev": "nuxt-ts",
"build": "nuxt-ts build",
"generate": "nuxt-ts generate",
"start": "nuxt-ts start"
}
nuxt.config.js
의 파일 이름을 nuxt.config.ts
로 변경합니다.또,
extend(config, ctx) {}
로 형을 지정하지 않으면 에러가 되므로, 지정해 줍니다.nuxt.config.ts.diff
build: {
- extend(config, ctx) {}
+ extend(config: any, ctx: any) {}
}
nuxt.config.ts
에 다음을 추가합니다.nuxt.config.ts
typescript: {
typeCheck: true,
ignoreNotFoundWarnings: true
}
eslint-config-typescript 설치
npm install --save-dev @nuxtjs/eslint-config-typescript
이어서 package.json
의 script
의 lint
를 수정합니다.
package.json.diff "scripts": {
- "lint": "eslint --ext .js,.vue --ignore-path .gitignore ."
+ "lint": "eslint --ext .ts,.js,.vue --ignore-path .gitignore ."
}
eslintrc.js
의 extends
에 다음을 추가합니다.@nuxtjs
가 있으면 삭제합니다.
eslintrc.js.diff extends: [
- '@nuxtjs',
+ '@nuxtjs/eslint-config-typescript',
],
필요한 파일 추가
tsconfig.json
파일을 루트 바로 아래에 만듭니다.
tsconfig.json{
"compilerOptions": {
"target": "es2018",
"module": "esnext",
"moduleResolution": "node",
"lib": [
"esnext",
"esnext.asynciterable",
"dom"
],
"esModuleInterop": true,
"allowJs": true,
"sourceMap": true,
"strict": true,
"noEmit": true,
"baseUrl": ".",
"paths": {
"~/*": [
"./*"
],
"@/*": [
"./*"
]
},
"types": [
"@types/node",
"@nuxt/types"
]
},
"exclude": [
"node_modules"
]
}
Element 문제 해결
UI 프레임워크에 Element
를 사용하지 않는 경우 이 항목을 건너뛸 수 있습니다.Element
를 선택한 경우 npm run dev
를 실행하면 아래와 같은 오류가 발생합니다.
92:18 Interface 'NuxtApp' incorrectly extends interface 'Vue'.
Types of property '$loading' are incompatible.
Type 'NuxtLoading' is not assignable to type '(options: LoadingServiceOptions) => ElLoadingComponent'.
Type 'NuxtLoading' provides no match for the signature '(options: LoadingServiceOptions): ElLoadingComponent'.
90 | }
91 |
> 92 | export interface NuxtApp extends Vue {
| ^
93 | $options: NuxtAppOptions
94 | $loading: NuxtLoading
95 | context: Context
ℹ Version: typescript 3.7.4
ℹ Time: 16566ms
이 문제를 해결하려면 tsconfig.json
의 compilerOptions
에 "skipLibCheck": true
를 추가합니다.
tsconfig.json"compilerOptions": {
"skipLibCheck": true,
}
nuxt-property-decorator 설치
클래스를 사용하려면 nuxt-property-decorator를 설치합니다.
npm install --save-dev nuxt-property-decorator
nuxt-property-decorator를 사용하려면 tsconfig.json
의 compilerOptions
에 "experimentalDecorators": true
를 추가하십시오.
tsconfig.json"compilerOptions": {
"experimentalDecorators": true,
}
TypeScript를 사용해보기
pages/index.vue
의 script
의 부분을 TypeScript로 써 봅니다.~/components/Logo.vue
를 import하고 있는 부분에 .vue
를 붙이는 것에 주의해 주세요.
pages/index.vue<script lang="ts">
import { Component, Vue } from 'nuxt-property-decorator'
import Logo from '~/components/Logo.vue' // .vueを忘れずにつける
@Component({
components: {
Logo
}
})
export default class extends Vue { }
</script>
ESLint 문제 해결
ESLint
를 사용하는 경우 npm run dev
를 실행하면 다음과 유사한 오류가 발생합니다.
40:0 error Parsing error: Using the export keyword between a decorator and a class is not allowed. Please use `export @dec class` instead.
8 | },
9 | })
> 10 | export default class extends Vue { }
| ^
11 |
✖ 1 problem (1 error, 0 warnings)
이 문제를 해결하려면 .eslintrc.js
babel-eslint
를 제거합니다.
eslintrc.jsparserOptions: {
parser: 'babel-eslint' // この行を削除
}
확인
http://localhost:3000/ 로 이동하여 아래와 같은 화면을 확인할 수 있으면 완료됩니다!
수고하셨습니다!
Reference
이 문제에 관하여(Nuxt.js에 TypeScript를 도입하는 절차 요약), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/itouuuuuuuuu/items/51fc4f3edbfcd71548a5
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
npm install --save-dev @nuxtjs/eslint-config-typescript
"scripts": {
- "lint": "eslint --ext .js,.vue --ignore-path .gitignore ."
+ "lint": "eslint --ext .ts,.js,.vue --ignore-path .gitignore ."
}
extends: [
- '@nuxtjs',
+ '@nuxtjs/eslint-config-typescript',
],
tsconfig.json
파일을 루트 바로 아래에 만듭니다.tsconfig.json
{
"compilerOptions": {
"target": "es2018",
"module": "esnext",
"moduleResolution": "node",
"lib": [
"esnext",
"esnext.asynciterable",
"dom"
],
"esModuleInterop": true,
"allowJs": true,
"sourceMap": true,
"strict": true,
"noEmit": true,
"baseUrl": ".",
"paths": {
"~/*": [
"./*"
],
"@/*": [
"./*"
]
},
"types": [
"@types/node",
"@nuxt/types"
]
},
"exclude": [
"node_modules"
]
}
Element 문제 해결
UI 프레임워크에 Element
를 사용하지 않는 경우 이 항목을 건너뛸 수 있습니다.Element
를 선택한 경우 npm run dev
를 실행하면 아래와 같은 오류가 발생합니다.
92:18 Interface 'NuxtApp' incorrectly extends interface 'Vue'.
Types of property '$loading' are incompatible.
Type 'NuxtLoading' is not assignable to type '(options: LoadingServiceOptions) => ElLoadingComponent'.
Type 'NuxtLoading' provides no match for the signature '(options: LoadingServiceOptions): ElLoadingComponent'.
90 | }
91 |
> 92 | export interface NuxtApp extends Vue {
| ^
93 | $options: NuxtAppOptions
94 | $loading: NuxtLoading
95 | context: Context
ℹ Version: typescript 3.7.4
ℹ Time: 16566ms
이 문제를 해결하려면 tsconfig.json
의 compilerOptions
에 "skipLibCheck": true
를 추가합니다.
tsconfig.json"compilerOptions": {
"skipLibCheck": true,
}
nuxt-property-decorator 설치
클래스를 사용하려면 nuxt-property-decorator를 설치합니다.
npm install --save-dev nuxt-property-decorator
nuxt-property-decorator를 사용하려면 tsconfig.json
의 compilerOptions
에 "experimentalDecorators": true
를 추가하십시오.
tsconfig.json"compilerOptions": {
"experimentalDecorators": true,
}
TypeScript를 사용해보기
pages/index.vue
의 script
의 부분을 TypeScript로 써 봅니다.~/components/Logo.vue
를 import하고 있는 부분에 .vue
를 붙이는 것에 주의해 주세요.
pages/index.vue<script lang="ts">
import { Component, Vue } from 'nuxt-property-decorator'
import Logo from '~/components/Logo.vue' // .vueを忘れずにつける
@Component({
components: {
Logo
}
})
export default class extends Vue { }
</script>
ESLint 문제 해결
ESLint
를 사용하는 경우 npm run dev
를 실행하면 다음과 유사한 오류가 발생합니다.
40:0 error Parsing error: Using the export keyword between a decorator and a class is not allowed. Please use `export @dec class` instead.
8 | },
9 | })
> 10 | export default class extends Vue { }
| ^
11 |
✖ 1 problem (1 error, 0 warnings)
이 문제를 해결하려면 .eslintrc.js
babel-eslint
를 제거합니다.
eslintrc.jsparserOptions: {
parser: 'babel-eslint' // この行を削除
}
확인
http://localhost:3000/ 로 이동하여 아래와 같은 화면을 확인할 수 있으면 완료됩니다!
수고하셨습니다!
Reference
이 문제에 관하여(Nuxt.js에 TypeScript를 도입하는 절차 요약), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/itouuuuuuuuu/items/51fc4f3edbfcd71548a5
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
92:18 Interface 'NuxtApp' incorrectly extends interface 'Vue'.
Types of property '$loading' are incompatible.
Type 'NuxtLoading' is not assignable to type '(options: LoadingServiceOptions) => ElLoadingComponent'.
Type 'NuxtLoading' provides no match for the signature '(options: LoadingServiceOptions): ElLoadingComponent'.
90 | }
91 |
> 92 | export interface NuxtApp extends Vue {
| ^
93 | $options: NuxtAppOptions
94 | $loading: NuxtLoading
95 | context: Context
ℹ Version: typescript 3.7.4
ℹ Time: 16566ms
"compilerOptions": {
"skipLibCheck": true,
}
클래스를 사용하려면 nuxt-property-decorator를 설치합니다.
npm install --save-dev nuxt-property-decorator
nuxt-property-decorator를 사용하려면
tsconfig.json
의 compilerOptions
에 "experimentalDecorators": true
를 추가하십시오.tsconfig.json
"compilerOptions": {
"experimentalDecorators": true,
}
TypeScript를 사용해보기
pages/index.vue
의 script
의 부분을 TypeScript로 써 봅니다.~/components/Logo.vue
를 import하고 있는 부분에 .vue
를 붙이는 것에 주의해 주세요.
pages/index.vue<script lang="ts">
import { Component, Vue } from 'nuxt-property-decorator'
import Logo from '~/components/Logo.vue' // .vueを忘れずにつける
@Component({
components: {
Logo
}
})
export default class extends Vue { }
</script>
ESLint 문제 해결
ESLint
를 사용하는 경우 npm run dev
를 실행하면 다음과 유사한 오류가 발생합니다.
40:0 error Parsing error: Using the export keyword between a decorator and a class is not allowed. Please use `export @dec class` instead.
8 | },
9 | })
> 10 | export default class extends Vue { }
| ^
11 |
✖ 1 problem (1 error, 0 warnings)
이 문제를 해결하려면 .eslintrc.js
babel-eslint
를 제거합니다.
eslintrc.jsparserOptions: {
parser: 'babel-eslint' // この行を削除
}
확인
http://localhost:3000/ 로 이동하여 아래와 같은 화면을 확인할 수 있으면 완료됩니다!
수고하셨습니다!
Reference
이 문제에 관하여(Nuxt.js에 TypeScript를 도입하는 절차 요약), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/itouuuuuuuuu/items/51fc4f3edbfcd71548a5
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
<script lang="ts">
import { Component, Vue } from 'nuxt-property-decorator'
import Logo from '~/components/Logo.vue' // .vueを忘れずにつける
@Component({
components: {
Logo
}
})
export default class extends Vue { }
</script>
ESLint
를 사용하는 경우 npm run dev
를 실행하면 다음과 유사한 오류가 발생합니다. 40:0 error Parsing error: Using the export keyword between a decorator and a class is not allowed. Please use `export @dec class` instead.
8 | },
9 | })
> 10 | export default class extends Vue { }
| ^
11 |
✖ 1 problem (1 error, 0 warnings)
이 문제를 해결하려면
.eslintrc.js
babel-eslint
를 제거합니다.eslintrc.js
parserOptions: {
parser: 'babel-eslint' // この行を削除
}
확인
http://localhost:3000/ 로 이동하여 아래와 같은 화면을 확인할 수 있으면 완료됩니다!
수고하셨습니다!
Reference
이 문제에 관하여(Nuxt.js에 TypeScript를 도입하는 절차 요약), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/itouuuuuuuuu/items/51fc4f3edbfcd71548a5
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Reference
이 문제에 관하여(Nuxt.js에 TypeScript를 도입하는 절차 요약), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/itouuuuuuuuu/items/51fc4f3edbfcd71548a5텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)