Advertisement
Guest User

Untitled

a guest
Dec 3rd, 2016
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. {
  2. "compileOnSave": true,
  3. "compilerOptions": {
  4. "noImplicitAny": false,
  5. "noEmitOnError": true,
  6. "removeComments": false,
  7. "sourceMap": true,
  8. "target": "es5",
  9. "module": "system",
  10. "moduleResolution": "node",
  11. "emitDecoratorMetadata": true,
  12. "experimentalDecorators": true,
  13. "outDir": "./Scripts"
  14. },
  15. "exclude": [
  16. "node_modules"
  17. ]
  18. }
  19.  
  20. export class Welcome {
  21. public static getMessage() {
  22. return "Hello World";
  23. }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement