This repository was archived by the owner on Mar 4, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 427
feat: add typescript support using typescript-build #328
Merged
Merged
Changes from all commits
Commits
Show all changes
50 commits
Select commit
Hold shift + click to select a range
4a05248
typescript support using typescript-build
ChangJoo-Park 4bd4f08
Remove trailing comma
ChangJoo-Park 8dbe5ea
Merge branch 'master' into typescript
ChangJoo-Park e244e81
remove @types/node
ChangJoo-Park bf7e77c
Add default / ts-runtime for none server + ts
ChangJoo-Park bf36d5d
set lang="ts" when using typescript
ChangJoo-Park 764cfdb
Remove ts-node
ChangJoo-Park f06ceea
@nuxt/typescript-build version to 0.1.11
ChangJoo-Park 6d9431d
Update ts script tag
ChangJoo-Park a28343e
Add typescript nuxt cookbook when completed
ChangJoo-Park b5df795
Using tsconfig.json using always when selected ts
ChangJoo-Park 9c28d89
only suggestion jsconfig.json when js users
ChangJoo-Park 0f16c8e
fix typo
ChangJoo-Park abf30c7
using js by default
ChangJoo-Park 4d62b71
tsconfig / jsconfig settings
ChangJoo-Park 4f498f7
add closing tag for ts
ChangJoo-Park b68b79f
Delete package-lock.json
ChangJoo-Park d3df5d4
Update template/nuxt/pages/index.vue
ChangJoo-Park 2da1f54
support eslint when TypeScript.
ChangJoo-Park 97a6afd
set false tsRuntime when select TypeScript
ChangJoo-Park 309662c
support jest with typescript
ChangJoo-Park ffacdd1
Update saofile.js
ChangJoo-Park 8a81cad
Update template/tsconfig.json
ChangJoo-Park 4476bab
Merge branch 'master' into typescript
ChangJoo-Park 55c482a
Add language and runtime to prompts.js
ChangJoo-Park fa611c6
Update TypeScript relative package versions
ChangJoo-Park c26e961
@nuxt/core needs eslint-module
ChangJoo-Park ab8be4a
Update tsconfig.json
ChangJoo-Park 57461b2
Update README for TypeScript
ChangJoo-Park f2e66a7
Merge branch 'typescript' of https://github.com/ChangJoo-Park/create-…
ChangJoo-Park 3cc40d0
Install eslint-module when eslint && !typesciprt
ChangJoo-Park 8560a10
Merge branch 'master' into typescript
ChangJoo-Park 2619c95
Merge branch 'master' into typescript
kevinmarrec 10cb365
Update template/_package.json
ChangJoo-Park 336bf12
Update template/_package.json
ChangJoo-Park 3ddb25a
Update template/_package.json
ChangJoo-Park 804aec1
Update template/_package.json
ChangJoo-Park e6ae902
Update template/tsconfig.json
ChangJoo-Park 34e0dab
Merge branch 'master' into typescript
ChangJoo-Park 0b15a8a
Update template/_package.json
ChangJoo-Park ef8093f
Update template/_package.json
ChangJoo-Park e51f33c
Merge branch 'master' into typescript
ChangJoo-Park 7d71f38
Update template/_package.json
ChangJoo-Park b000f62
Merge branch 'master' into typescript
ChangJoo-Park 2fc953e
Update .eslintignore
ChangJoo-Park aa80ab1
Merge branch 'master' into typescript
ChangJoo-Park 1339a99
Merge branch 'master' into typescript
ChangJoo-Park 34f1751
Update template/nuxt/nuxt.config.js
kevinmarrec 1fcee07
Update template/nuxt/nuxt.config.js
kevinmarrec da217ca
bump some packages versions
kevinmarrec File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
_*.js | ||
template/nuxt/pages/index.vue | ||
template/frameworks/iview/pages/index.vue | ||
template/frameworks/jest/jest.config.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "es2018", | ||
"module": "esnext", | ||
"moduleResolution": "node", | ||
"lib": [ | ||
"esnext", | ||
"esnext.asynciterable", | ||
"dom" | ||
], | ||
"esModuleInterop": true, | ||
"allowJs": true, | ||
"sourceMap": true, | ||
"strict": true, | ||
"noEmit": true, | ||
"experimentalDecorators": true, | ||
"baseUrl": ".", | ||
"paths": { | ||
kevinmarrec marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"~/*": [ | ||
"./*" | ||
], | ||
"@/*": [ | ||
"./*" | ||
] | ||
}, | ||
"types": [ | ||
"@types/node", | ||
"@nuxt/types" | ||
] | ||
}, | ||
"exclude": [ | ||
"node_modules", | ||
".nuxt", | ||
"dist" | ||
] | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.