「ちょっとTS書いて試したいだけなのに、いちいち環境設定めんどくせーーんだよ!!!」
って誰かが言ってました。
だれでしょうね。
[2020.1.16 vue-cli 追記]
[2020.6.21 create-nuxt-app 追記]
TypeScript Playground
TypeScript Playground公式 にアクセス
約1秒
で書き始められる
CodeSandbox
CodeSandboxにアクセスして、おもむろに xxx+TS
押下。
約5秒
で書き始められる
create-nuxt-app (v2.15.0以降)
npx create-nuxt-app my-app
? Choose programming language
の質問で TypeScript
を選択
create next app
$ yarn create next-app --example with-typescript my-app
$ cd my-app
$ yarn dev
--example
オプションで with-typescriptを指定します。
約30秒
で書き始められる
create react app
$ yarn create react-app my-app --template typescript
$ cd my-app
$ yarn start
--typescript
オプションを指定します。
約30秒
で書き始められる
vue-cli
# 1. (インストールされていない場合)Vue CLI をインストール
$ npm install --global @vue/cli
# 2. 新規のプロジェクトを作成コマンドを実行後に出てくる選択肢で "Manually select features" を選択して下さい
$ vue create {your-project-name}
約30秒
で書き始められる
参考 https://qiita.com/nunulk/items/7e20d6741637c3416dcd
その他
もっと早い方法あるぜ!ってかたはコメントいただけるとうれしいです。