Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Convert/typescript#3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
ShMcK merged 5 commits intomasterfromconvert/typescript
May 30, 2020
Merged
Show file tree
Hide file tree
Changes from1 commit
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
PrevPrevious commit
NextNext commit
setup typescript
Signed-off-by: shmck <shawn.j.mckay@gmail.com>
  • Loading branch information
@ShMcK
ShMcK committedMay 30, 2020
commit7703261e8cfe2c2eb79e440932c929babaf238e4
1 change: 1 addition & 0 deletions.gitignore
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
build
node_modules
5 changes: 3 additions & 2 deletions.vscode/settings.json
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -4,7 +4,8 @@
"source.organizeImports": false,
"source.fixAll": true
},
"eslint.validate": ["javascript"],
"eslint.validate": ["javascript", "typescript"],
"files.exclude": {},
"git.alwaysSignOff": true
"git.alwaysSignOff": true,
"typescript.tsdk": "./node_modules/typescript/lib"
}
52 changes: 52 additions & 0 deletionspackage-lock.json
View file
Open in desktop

Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.

7 changes: 7 additions & 0 deletionspackage.json
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -26,5 +26,12 @@
"ncp": "^2.0.0",
"npc": "0.0.1",
"simple-git": "^2.5.0"
},
"devDependencies": {
"@types/inquirer": "^6.5.0",
"@types/js-yaml": "^3.12.4",
"@types/lodash": "^4.14.154",
"@types/ncp": "^2.0.4",
"typescript": "^3.9.3"
}
}
25 changes: 25 additions & 0 deletionstsconfig.json
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es2018",
"outDir": "build",
"lib": ["es2018", "dom"],
"sourceMap": true,
"rootDir": "src",
"baseUrl": "src",
"strict": true /* enable all strict type-checking options */,
/* Additional Checks */
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"allowJs": true,
"removeComments": true
},
"exclude": ["node_modules", ".vscode", "bin", "build", "test"]
}

[8]ページ先頭

©2009-2025 Movatter.jp