Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
305 views
in Technique[技术] by (71.8m points)

sublimetext2 - How to configure a Sublime Build System for TypeScript

I'm looking to configure a Build System in Sublime Text for TypeScript.

I'm currently using...

{
  "cmd": ["tsc", "$file"],
  "selector": "source.ts"
}

I'd also like to set the 'file_regex' property to handle error messages.

Anyone know what to set this to?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Use this on OS-X:

{
    "cmd": ["tsc","$file"],
    "file_regex": "(.*\.ts?)\s\(([0-9]+)\,([0-9]+)\)\:\s(...*?)$",
    "selector": "source.ts",
    "osx": {
       "path": "/usr/local/bin:/opt/local/bin"
    }
}

EDIT:

Here is the Sublime Build System created for Windows. Tested and working as expected. However you need to include tsc.cmd path in the windows environment, otherwise you should define the root to the Typescript command in the cmd section below:

{
    "cmd": ["tsc","$file"],
    "file_regex": "(.*\.ts?)\s\(([0-9]+)\,([0-9]+)\)\:\s(...*?)$",
    "selector": "source.ts",

    "windows": {
        "cmd": ["tsc.cmd", "$file"]
    }
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...