init typescript
Getting Start
install typescript
// if yet
$ npm i -g typescript
// create tsconfig.json
$ tsc --init// Delete Comment Out Line
$ ^.* // .*$(\r\n|\r|\n)?
$ ^ /*/.*$(\r\n|\r|\n)?{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
}
}
test
Last updated