I hereby claim:
- I am onesword0618 on github.
- I am onesword0618 (https://keybase.io/onesword0618) on keybase.
- I have a public key whose fingerprint is 0F1D 22BD 2FE8 954A D45A 8342 6B21 1593 4082 D624
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
// airbnb-typescript | |
"rules": { | |
"react/jsx-filename-extension": [ | |
"error", | |
{ | |
"extensions": [ | |
".jsx", | |
".tsx" | |
] | |
} |
[2762 develop src]@$ npm start | |
> [email protected] start /home/develop/src/toyboxs | |
> webpack-dev-server --open | |
internal/modules/cjs/loader.js:883 | |
throw err; | |
^ | |
Error: Cannot find module 'webpack-cli/bin/config-yargs' |
{ | |
"display": "play typescript", | |
"include": [ | |
"src/**/*", | |
"tests/**/*" | |
], | |
"exclude": [ | |
"node_modules" | |
], | |
"compilerOptions": { |
/** | |
* build.gradle | |
* https://docs.gradle.org/6.6/userguide/userguide.html | |
* Author : onesword0618 | |
*/ | |
// Gradleの機能を拡張する。 | |
// 追加することでプラグインのタスクを利用することが可能になる。 | |
// コアプラグイン以外で利用できるものは、https://plugins.gradle.org/ を参照すること。 | |
plugins { |
# docker-compose | |
# | |
# https://docs.docker.com/compose/compose-file/#compose-and-docker-compatibility-matrix | |
version: '3.8' | |
# https://docs.docker.com/compose/compose-file/#service-configuration-reference | |
services: | |
db: | |
# https://docs.docker.com/compose/compose-file/#image | |
image: mysql:8.0 | |
# https://docs.docker.com/compose/compose-file/#volumes |
# Dockerfileは、ファイルに記載している命令を読み込み、イメージを構築する。 | |
# | |
# https://docs.docker.com/engine/reference/builder/#from | |
# https://hub.docker.com/layers/ubuntu/library/ubuntu/18.04/images/sha256-515e7c555486235ae2ad9c3820c0edf636aacbf25c8402ae70e1a2c3cd6b28f1?context=explore | |
# どこのDockerイメージからレイヤを作成するかを定義する。 | |
FROM ubuntu:18.04 | |
# TIPS apt-utilsをインストールすると他の警告が出力して失敗するので、以下の設定を定義する。 | |
ENV DEBIAN_FRONTEND=noninteractive | |
# http://manpages.ubuntu.com/manpages/xenial/man7/debconf.7.html | |
ENV DEBCONF_NOWARNINGS=yes |