Skip to content
This repository has been archived by the owner on Apr 2, 2021. It is now read-only.

ispfx/typescript-crash-course

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TypeScript Crash Course

This is a brief collection of TypeScript classes and variables demonstrating the most common uses of the TypeScript language.

Building Your Own TypeScript Files

This solution is intended to accompany Introduction to SharePoint Framework, an online educational course that helps you to learn modern SharePoint Framework development techniques. Learn how to build your own TypeScript classes and variables by following the lessons found at sharepointfx.io.

Getting Started

# Install dependencies
npm i -g typescript tslint

# Run the TypeScript compiler in "watch" mode
tsc src/index.ts --outDir dist --watch

Learn More

For more information about TypeScript, see the official documentation.