其他分享
首页 > 其他分享> > TypeScript – tsconfig

TypeScript – tsconfig

作者:互联网

前言

上一篇 TypeScript – Get Started 使用了命令

tsc index.ts --module es2015

很少人会在命令时给写 config, 更正规的做法是创建一个 tsconfig.json 把所有 config 写到里面去. 类似 webpack.config.js, tailwind.config.js, .eslintrc.json, prettier.config.js, stylelint.config.js

 

Create tsconfig.json

tsc --init

运行命令后就会创建出 tsconfig.json 了

 

里面包含了所有 config 和 注释. 有需要的就开启.

 

常用 Config

 

标签:TypeScript,tsc,js,json,config,tsconfig
来源: https://www.cnblogs.com/keatkeat/p/16204926.html