turkdevops / electron

:electron: Build cross-platform desktop apps with JavaScript, HTML, and CSS
https://electronjs.org
MIT License
1 stars 0 forks source link
// Welcome to the TypeScript Playground, this is a website
// which gives you a chance to write, share and learn TypeScript.

// You could think of it in three ways:
//
//  - A place to learn TypeScript in a place where nothing can break
//  - A place to experiment with TypeScript syntax, and share the URLs with others
//  - A sandbox to experiment with different compiler features of TypeScript

const anExampleVariable = "Hello World"
console.log(anExampleVariable)

// To learn more about the language, click above in "Examples" or "What's New".
// Otherwise, get started by removing these comments and the world is your playground.
Output ```ts "use strict"; // Welcome to the TypeScript Playground, this is a website // which gives you a chance to write, share and learn TypeScript. // You could think of it in three ways: // // - A place to learn TypeScript in a place where nothing can break // - A place to experiment with TypeScript syntax, and share the URLs with others // - A sandbox to experiment with different compiler features of TypeScript const anExampleVariable = "Hello World"; console.log(anExampleVariable); // To learn more about the language, click above in "Examples" or "What's New". // Otherwise, get started by removing these comments and the world is your playground. ```
Compiler Options ```json { "compilerOptions": { "noImplicitAny": true, "strictNullChecks": true, "strictFunctionTypes": true, "strictPropertyInitialization": true, "strictBindCallApply": true, "noImplicitThis": true, "noImplicitReturns": true, "alwaysStrict": true, "esModuleInterop": true, "declaration": true, "experimentalDecorators": true, "emitDecoratorMetadata": true, "moduleResolution": 2, "target": "ES2017", "jsx": "React", "module": "ESNext" } } ```

Playground Link: Provided

Playground Link