Updating typescript version and js file

This commit is contained in:
Shivam Gupta
2021-03-17 14:26:33 +05:30
parent ae228a9a52
commit 6dc9231fd1
167 changed files with 221377 additions and 117055 deletions

View File

@ -1,6 +1,25 @@
"use strict";
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
@ -10,24 +29,18 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
result["default"] = mod;
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
const os = __importStar(require("os"));
const path = __importStar(require("path"));
const util = __importStar(require("util"));
const fs = __importStar(require("fs"));
const semver = __importStar(require("semver"));
const toolCache = __importStar(require("@actions/tool-cache"));
const core = __importStar(require("@actions/core"));
const graphql_1 = require("@octokit/graphql");
const helmToolName = 'helm';
const stableHelmVersion = 'v3.2.1';
const helmAllReleasesUrl = 'https://api.github.com/repos/helm/helm/releases';
const LATEST_HELM2_VERSION = '2.*';
const LATEST_HELM3_VERSION = '3.*';
function getExecutableExtension() {
if (os.type().match(/^Win/)) {
return '.exe';
@ -45,32 +58,6 @@ function getHelmDownloadURL(version) {
return util.format('https://get.helm.sh/helm-%s-windows-amd64.zip', version);
}
}
function getStableHelmVersion() {
return __awaiter(this, void 0, void 0, function* () {
try {
const downloadPath = yield toolCache.downloadTool(helmAllReleasesUrl);
const responseArray = JSON.parse(fs.readFileSync(downloadPath, 'utf8').toString().trim());
let latestHelmVersion = semver.clean(stableHelmVersion);
responseArray.forEach(response => {
if (response && response.tag_name) {
let currentHelmVerison = semver.clean(response.tag_name.toString());
if (currentHelmVerison) {
if (currentHelmVerison.toString().indexOf('rc') == -1 && semver.gt(currentHelmVerison, latestHelmVersion)) {
//If current helm version is not a pre release and is greater than latest helm version
latestHelmVersion = currentHelmVerison;
}
}
}
});
latestHelmVersion = "v" + latestHelmVersion;
return latestHelmVersion;
}
catch (error) {
core.warning(util.format("Cannot get the latest Helm info from %s. Error %s. Using default Helm version %s.", helmAllReleasesUrl, error, stableHelmVersion));
}
return stableHelmVersion;
});
}
var walkSync = function (dir, filelist, fileToFind) {
var files = fs.readdirSync(dir);
filelist = filelist || [];
@ -90,7 +77,7 @@ var walkSync = function (dir, filelist, fileToFind) {
function downloadHelm(version) {
return __awaiter(this, void 0, void 0, function* () {
if (!version) {
version = yield getStableHelmVersion();
version = yield getLatestHelmVersionFor("v3");
}
let cachedToolpath = toolCache.find(helmToolName, version);
if (!cachedToolpath) {
@ -113,6 +100,41 @@ function downloadHelm(version) {
return helmpath;
});
}
function getLatestHelmVersionFor(type) {
return __awaiter(this, void 0, void 0, function* () {
const token = core.getInput('token', { 'required': true });
try {
const { repository } = yield graphql_1.graphql(`{
repository(name:"helm", owner:"helm") {
releases(last: 100) {
nodes {
tagName
}
}
}
}`, {
headers: {
authorization: `token ${token}`
}
});
const releases = repository.releases.nodes.reverse();
let latestValidRelease = releases.find(release => isValidVersion(release.tagName, type));
if (latestValidRelease)
return latestValidRelease.tagName;
}
catch (err) {
core.warning(util.format("Error while fetching the latest Helm %s release. Error: %s. Using default Helm version %s.", type, err.toString(), stableHelmVersion));
}
core.warning(util.format("Could not find stable release for Helm %s. Using default Helm version %s.", type, stableHelmVersion));
return stableHelmVersion;
});
}
// isValidVersion checks if verison matches the specified type and is a stable release
function isValidVersion(version, type) {
if (!version.toLocaleLowerCase().startsWith(type))
return false;
return version.indexOf('rc') == -1;
}
function findHelm(rootFolder) {
fs.chmodSync(rootFolder, '777');
var filelist = [];
@ -127,12 +149,16 @@ function findHelm(rootFolder) {
function run() {
return __awaiter(this, void 0, void 0, function* () {
let version = core.getInput('version', { 'required': true });
if (version.toLocaleLowerCase() === 'latest') {
version = yield getStableHelmVersion();
if (version.toLocaleLowerCase() === 'latest' || version === LATEST_HELM3_VERSION) {
version = yield getLatestHelmVersionFor("v3");
}
else if (version === LATEST_HELM2_VERSION) {
version = yield getLatestHelmVersionFor("v2");
}
else if (!version.toLocaleLowerCase().startsWith('v')) {
version = 'v' + version;
}
core.debug(util.format("Downloading %s", version));
let cachedPath = yield downloadHelm(version);
try {
if (!process.env['PATH'].startsWith(path.dirname(cachedPath))) {

1
node_modules/typescript/.yarnrc generated vendored
View File

@ -1 +0,0 @@
--install.no-lockfile true

826
node_modules/typescript/AUTHORS.md generated vendored
View File

@ -1,348 +1,480 @@
TypeScript is authored by:
* Aaron Holmes
* Abubaker Bashir
* Adam Freidin
* Adi Dahiya
* Aditya Daflapurkar
* Adnan Chowdhury
* Adrian Leonhard
* Adrien Gibrat
* Ahmad Farid
* Akshar Patel
* Alan Agius
* Alex Chugaev
* Alex Eagle
* Alex Khomchenko
* Alex Ryan
* Alexander Kuvaev
* Alexander Rusakov
* Alexander Tarasyuk
* Ali Sabzevari
* Aliaksandr Radzivanovich
* Aluan Haddad
* Anatoly Ressin
* Anders Hejlsberg
* Andreas Martin
* Andrej Baran
* Andrew Casey
* Andrew Faulkner
* Andrew Ochsner
* Andrew Stegmaier
* Andrew Z Allen
* András Parditka
* Andy Hanson
* Anil Anar
* Anton Khlynovskiy
* Anton Tolmachev
* Anubha Mathur
* Armando Aguirre
* Arnaud Tournier
* Arnav Singh
* Artem Tyurin
* Arthur Ozga
* Asad Saeeduddin
* Avery Morin
* Basarat Ali Syed
* @begincalendar
* Ben Duffield
* Ben Mosher
* Benjamin Bock
* Benjamin Lichtman
* Benny Neugebauer
* Bill Ticehurst
* Blaine Bublitz
* Blake Embrey
* @bluelovers
* @bootstraponline
* Bowden Kelly
* Bowden Kenny
* Brandon Slade
* Brett Mayen
* Bryan Forbes
* Caitlin Potter
* Cameron Taggart
* @cedvdb
* Charles Pierce
* Charly POLY
* Chris Bubernak
* Christophe Vidal
* Chuck Jazdzewski
* Colby Russell
* Colin Snover
* Cotton Hou
* Cyrus Najmabadi
* Dafrok Zhang
* Dahan Gong
* Dan Corder
* Dan Freeman
* Dan Quirk
* Daniel Gooss
* Daniel Hollocher
* Daniel Król
* Daniel Lehenbauer
* Daniel Rosenwasser
* David Kmenta
* David Li
* David Sheldrick
* David Sherret
* David Souther
* David Staheli
* Denis Nedelyaev
* Derek P Sifford
* Dhruv Rajvanshi
* Dick van den Brink
* Diogo Franco (Kovensky)
* Dirk Bäumer
* Dirk Holtwick
* Dom Chen
* Donald Pipowitch
* Doug Ilijev
* @e-cloud
* Ecole Keine
* Elisée Maurer
* Elizabeth Dinella
* Emilio García-Pumarino
* Eric Grube
* Eric Tsang
* Erik Edrosa
* Erik McClenney
* Esakki Raj
* Ethan Resnick
* Ethan Rubio
* Eugene Timokhov
* Evan Martin
* Evan Sebastian
* Eyas Sharaiha
* Fabian Cook
* @falsandtru
* Filipe Silva
* @flowmemo
* Francois Wouts
* Frank Wallis
* Franklin Tse
* František Žiacik
* Gabe Moothart
* Gabriel Isenberg
* Gilad Peleg
* Godfrey Chan
* Graeme Wicksted
* Guilherme Oenning
* Guillaume Salles
* Guy Bedford
* Halasi Tamás
* Harald Niesche
* Hendrik Liebau
* Henry Mercer
* Herrington Darkholme
* Holger Jeromin
* Homa Wong
* Iain Monro
* @IdeaHunter
* Igor Novozhilov
* Ika
* Ingvar Stepanyan
* Isiah Meadows
* Ivan Enderlin
* Ivo Gabe de Wolff
* Iwata Hidetaka
* Jack Williams
* Jakub Korzeniowski
* Jakub Młokosiewicz
* James Henry
* James Whitney
* Jan Melcher
* Jason Freeman
* Jason Jarrett
* Jason Killian
* Jason Ramsay
* JBerger
* Jed Mao
* Jeffrey Morlan
* Jesse Schalken
* Jing Ma
* Jiri Tobisek
* Joe Calzaretta
* Joe Chung
* Joel Day
* Joey Wilson
* Johannes Rieken
* John Doe
* John Vilk
* Jonathan Bond-Caron
* Jonathan Park
* Jonathan Toland
* Jonathan Turner
* Jonathon Smith
* Jordi Oliveras Rovira
* Joscha Feth
* Josh Abernathy
* Josh Goldberg
* Josh Kalderimis
* Josh Soref
* Juan Luis Boya García
* Julian Williams
* Justin Bay
* Justin Johansson
* K. Preißer
* Kagami Sascha Rosylight
* Kanchalai Tanglertsampan
* Kate Miháliková
* Keith Mashinter
* Ken Howard
* Kenji Imamula
* Kerem Kat
* Kevin Donnelly
* Kevin Gibbons
* Kevin Lang
* Khải
* Kitson Kelly
* Klaus Meinhardt
* Kris Zyp
* Kyle Kelley
* Kārlis Gaņģis
* Lorant Pinter
* Lucien Greathouse
* Lukas Elmer
* Maarten Sijm
* Magnus Hiie
* Magnus Kulke
* Manish Giri
* Marin Marinov
* Marius Schulz
* Markus Johnsson
* Martin Hiller
* Martin Probst
* Martin Vseticka
* Martyn Janes
* Masahiro Wakame
* Mateusz Burzyński
* Matt Bierner
* Matt McCutchen
* Matt Mitchell
* Mattias Buelens
* Mattias Buelens
* Max Deepfield
* Maxwell Paul Brickner
* @meyer
* Micah Zoltu
* @micbou
* Michael
* Michael Bromley
* Mike Busyrev
* Mike Morearty
* Mine Starks
* Mohamed Hegazy
* Mohsen Azimi
* Myles Megyesi
* Nathan Shively-Sanders
* Nathan Yee
* Nicolas Henry
* Nicu Micleușanu
* @nieltg
* Nima Zahedi
* Noah Chen
* Noel Varanda
* Noj Vek
* Oleg Mihailik
* Oleksandr Chekhovskyi
* Omer Sheikh
* Orta Therox
* Oskar Segersva¨rd
* Oussama Ben Brahim
* Patrick Zhong
* Paul Jolly
* Paul Koerbitz
* Paul van Brenk
* @pcbro
* Pedro Maltez
* Perry Jiang
* Peter Burns
* Philip Bulley
* Philippe Voinov
* Pi Lanningham
* Piero Cangianiello
* @piloopin
* Prayag Verma
* Priyantha Lankapura
* @progre
* Punya Biswal
* Rado Kirov
* Raj Dosanjh
* Reiner Dolp
* Remo H. Jansen
* @rhysd
* Ricardo N Feliciano
* Richard Karmazín
* Richard Knoll
* Richard Sentino
* Robert Coie
* Rohit Verma
* Ron Buckton
* Rostislav Galimsky
* Rowan Wyborn
* Ryan Cavanaugh
* Ryohei Ikegami
* Sam Bostock
* Sam El-Husseini
* Sarangan Rajamanickam
* Sean Barag
* Sergey Rubanov
* Sergey Shandar
* Sergii Bezliudnyi
* Sharon Rolel
* Sheetal Nandi
* Shengping Zhong
* Shyyko Serhiy
* Simon Hürlimann
* Slawomir Sadziak
* Solal Pirelli
* Soo Jae Hwang
* Stan Thomas
* Stanislav Iliev
* Stanislav Sysoev
* Stas Vilchik
* Stephan Ginthör
* Steve Lucco
* @styfle
* Sudheesh Singanamalla
* Sébastien Arod
* @T18970237136
* @t_
* Taras Mankovski
* Tarik Ozket
* Tetsuharu Ohzeki
* Thomas den Hollander
* Thomas Loubiou
* Tien Hoanhtien
* Tim Lancina
* Tim Perry
* Tim Viiding-Spader
* Tingan Ho
* Todd Thomson
* togru
* Tomas Grubliauskas
* Torben Fitschen
* @TravCav
* TruongSinh Tran-Nguyen
* Tycho Grouwstra
* Vadi Taslim
* Vakhurin Sergey
* Vidar Tonaas Fauske
* Viktor Zozulyak
* Vilic Vane
* Vimal Raghubir
* Vladimir Kurchatkin
* Vladimir Matveev
* Vyacheslav Pukhanov
* Wenlu Wang
* Wesley Wigham
* William Orr
* Wilson Hobbs
* York Yao
* @yortus
* Yuichi Nukiyama
* Yuval Greenfield
* Zeeshan Ahmed
* Zev Spitz
* Zhengbo Li
* @Zzzen
- 0verk1ll
- Abubaker Bashir
- Adam Freidin
- Adam Postma
- Adi Dahiya
- Aditya Daflapurkar
- Adnan Chowdhury
- Adrian Leonhard
- Adrien Gibrat
- Ahmad Farid
- Ajay Poshak
- Alan Agius
- Alan Pierce
- Alessandro Vergani
- Alex Chugaev
- Alex Eagle
- Alex Khomchenko
- Alex Ryan
- Alexander
- Alexander Kuvaev
- Alexander Rusakov
- Alexander Tarasyuk
- Ali Sabzevari
- Aluan Haddad
- amaksimovich2
- Anatoly Ressin
- Anders Hejlsberg
- Anders Kaseorg
- Andre Sutherland
- Andreas Martin
- Andrej Baran
- Andrew
- Andrew Branch
- Andrew Casey
- Andrew Faulkner
- Andrew Ochsner
- Andrew Stegmaier
- Andrew Z Allen
- Andrey Roenko
- Andrii Dieiev
- András Parditka
- Andy Hanson
- Anil Anar
- Anix
- Anton Khlynovskiy
- Anton Tolmachev
- Anubha Mathur
- AnyhowStep
- Armando Aguirre
- Arnaud Tournier
- Arnav Singh
- Arpad Borsos
- Artem Tyurin
- Arthur Ozga
- Asad Saeeduddin
- Austin Cummings
- Avery Morin
- Aziz Khambati
- Basarat Ali Syed
- @begincalendar
- Ben Duffield
- Ben Lichtman
- Ben Mosher
- Benedikt Meurer
- Benjamin Bock
- Benjamin Lichtman
- Benny Neugebauer
- BigAru
- Bill Ticehurst
- Blaine Bublitz
- Blake Embrey
- @bluelovers
- @bootstraponline
- Bowden Kelly
- Bowden Kenny
- Brad Zacher
- Brandon Banks
- Brandon Bloom
- Brandon Slade
- Brendan Kenny
- Brett Mayen
- Brian Terlson
- Bryan Forbes
- Caitlin Potter
- Caleb Sander
- Cameron Taggart
- @cedvdb
- Charles
- Charles Pierce
- Charly POLY
- Chris Bubernak
- Chris Patterson
- christian
- Christophe Vidal
- Chuck Jazdzewski
- Clay Miller
- Colby Russell
- Colin Snover
- Collins Abitekaniza
- Connor Clark
- Cotton Hou
- csigs
- Cyrus Najmabadi
- Dafrok Zhang
- Dahan Gong
- Daiki Nishikawa
- Dan Corder
- Dan Freeman
- Dan Quirk
- Dan Rollo
- Daniel Gooss
- Daniel Imms
- Daniel Krom
- Daniel Król
- Daniel Lehenbauer
- Daniel Rosenwasser
- David Li
- David Sheldrick
- David Sherret
- David Souther
- David Staheli
- Denis Nedelyaev
- Derek P Sifford
- Dhruv Rajvanshi
- Dick van den Brink
- Diogo Franco (Kovensky)
- Dirk Bäumer
- Dirk Holtwick
- Dmitrijs Minajevs
- Dom Chen
- Donald Pipowitch
- Doug Ilijev
- dreamran43@gmail.com
- @e-cloud
- Ecole Keine
- Eddie Jaoude
- Edward Thomson
- EECOLOR
- Eli Barzilay
- Elizabeth Dinella
- Ely Alamillo
- Eric Grube
- Eric Tsang
- Erik Edrosa
- Erik McClenney
- Esakki Raj
- Ethan Resnick
- Ethan Rubio
- Eugene Timokhov
- Evan Cahill
- Evan Martin
- Evan Sebastian
- ExE Boss
- Eyas Sharaiha
- Fabian Cook
- @falsandtru
- Filipe Silva
- @flowmemo
- Forbes Lindesay
- Francois Hendriks
- Francois Wouts
- Frank Wallis
- František Žiacik
- Frederico Bittencourt
- fullheightcoding
- Gabe Moothart
- Gabriel Isenberg
- Gabriela Araujo Britto
- Gabriela Britto
- gb714us
- Gilad Peleg
- Godfrey Chan
- Gorka Hernández Estomba
- Graeme Wicksted
- Guillaume Salles
- Guy Bedford
- hafiz
- Halasi Tamás
- Hendrik Liebau
- Henry Mercer
- Herrington Darkholme
- Hoang Pham
- Holger Jeromin
- Homa Wong
- Hye Sung Jung
- Iain Monro
- @IdeaHunter
- Igor Novozhilov
- Igor Oleinikov
- Ika
- iliashkolyar
- IllusionMH
- Ingvar Stepanyan
- Ingvar Stepanyan
- Isiah Meadows
- ispedals
- Ivan Enderlin
- Ivo Gabe de Wolff
- Iwata Hidetaka
- Jack Bates
- Jack Williams
- Jake Boone
- Jakub Korzeniowski
- Jakub Młokosiewicz
- James Henry
- James Keane
- James Whitney
- Jan Melcher
- Jason Freeman
- Jason Jarrett
- Jason Killian
- Jason Ramsay
- JBerger
- Jean Pierre
- Jed Mao
- Jeff Wilcox
- Jeffrey Morlan
- Jesse Schalken
- Jesse Trinity
- Jing Ma
- Jiri Tobisek
- Joe Calzaretta
- Joe Chung
- Joel Day
- Joey Watts
- Johannes Rieken
- John Doe
- John Vilk
- Jonathan Bond-Caron
- Jonathan Park
- Jonathan Toland
- Jordan Harband
- Jordi Oliveras Rovira
- Joscha Feth
- Joseph Wunderlich
- Josh Abernathy
- Josh Goldberg
- Josh Kalderimis
- Josh Soref
- Juan Luis Boya García
- Julian Williams
- Justin Bay
- Justin Johansson
- jwbay
- K. Preißer
- Kagami Sascha Rosylight
- Kanchalai Tanglertsampan
- karthikkp
- Kate Miháliková
- Keen Yee Liau
- Keith Mashinter
- Ken Howard
- Kenji Imamula
- Kerem Kat
- Kevin Donnelly
- Kevin Gibbons
- Kevin Lang
- Khải
- Kitson Kelly
- Klaus Meinhardt
- Kris Zyp
- Kyle Kelley
- Kārlis Gaņģis
- laoxiong
- Leon Aves
- Limon Monte
- Lorant Pinter
- Lucien Greathouse
- Luka Hartwig
- Lukas Elmer
- M.Yoshimura
- Maarten Sijm
- Magnus Hiie
- Magnus Kulke
- Manish Bansal
- Manish Giri
- Marcus Noble
- Marin Marinov
- Marius Schulz
- Markus Johnsson
- Markus Wolf
- Martin
- Martin Hiller
- Martin Johns
- Martin Probst
- Martin Vseticka
- Martyn Janes
- Masahiro Wakame
- Mateusz Burzyński
- Matt Bierner
- Matt McCutchen
- Matt Mitchell
- Matthew Aynalem
- Matthew Miller
- Mattias Buelens
- Max Heiber
- Maxwell Paul Brickner
- @meyer
- Micah Zoltu
- @micbou
- Michael
- Michael Crane
- Michael Henderson
- Michael Tamm
- Michael Tang
- Michal Przybys
- Mike Busyrev
- Mike Morearty
- Milosz Piechocki
- Mine Starks
- Minh Nguyen
- Mohamed Hegazy
- Mohsen Azimi
- Mukesh Prasad
- Myles Megyesi
- Nathan Day
- Nathan Fenner
- Nathan Shively-Sanders
- Nathan Yee
- ncoley
- Nicholas Yang
- Nicu Micleușanu
- @nieltg
- Nima Zahedi
- Noah Chen
- Noel Varanda
- Noel Yoo
- Noj Vek
- nrcoley
- Nuno Arruda
- Oleg Mihailik
- Oleksandr Chekhovskyi
- Omer Sheikh
- Orta Therox
- Orta Therox
- Oskar Grunning
- Oskar Segersva¨rd
- Oussama Ben Brahim
- Ozair Patel
- Patrick McCartney
- Patrick Zhong
- Paul Koerbitz
- Paul van Brenk
- @pcbro
- Pedro Maltez
- Pete Bacon Darwin
- Peter Burns
- Peter Šándor
- Philip Pesca
- Philippe Voinov
- Pi Lanningham
- Piero Cangianiello
- Pierre-Antoine Mills
- @piloopin
- Pranav Senthilnathan
- Prateek Goel
- Prateek Nayak
- Prayag Verma
- Priyantha Lankapura
- @progre
- Punya Biswal
- r7kamura
- Rado Kirov
- Raj Dosanjh
- rChaser53
- Reiner Dolp
- Remo H. Jansen
- @rflorian
- Rhys van der Waerden
- @rhysd
- Ricardo N Feliciano
- Richard Karmazín
- Richard Knoll
- Roger Spratley
- Ron Buckton
- Rostislav Galimsky
- Rowan Wyborn
- rpgeeganage
- Ruwan Pradeep Geeganage
- Ryan Cavanaugh
- Ryan Clarke
- Ryohei Ikegami
- Salisbury, Tom
- Sam Bostock
- Sam Drugan
- Sam El-Husseini
- Sam Lanning
- Sangmin Lee
- Sanket Mishra
- Sarangan Rajamanickam
- Sasha Joseph
- Sean Barag
- Sergey Rubanov
- Sergey Shandar
- Sergey Tychinin
- Sergii Bezliudnyi
- Sergio Baidon
- Sharon Rolel
- Sheetal Nandi
- Shengping Zhong
- Sheon Han
- Shyyko Serhiy
- Siddharth Singh
- sisisin
- Slawomir Sadziak
- Solal Pirelli
- Soo Jae Hwang
- Stan Thomas
- Stanislav Iliev
- Stanislav Sysoev
- Stas Vilchik
- Stephan Ginthör
- Steve Lucco
- @styfle
- Sudheesh Singanamalla
- Suhas
- Suhas Deshpande
- superkd37
- Sébastien Arod
- @T18970237136
- @t_
- Tan Li Hau
- Tapan Prakash
- Taras Mankovski
- Tarik Ozket
- Tetsuharu Ohzeki
- The Gitter Badger
- Thomas den Hollander
- Thorsten Ball
- Tien Hoanhtien
- Tim Lancina
- Tim Perry
- Tim Schaub
- Tim Suchanek
- Tim Viiding-Spader
- Tingan Ho
- Titian Cernicova-Dragomir
- tkondo
- Todd Thomson
- togru
- Tom J
- Torben Fitschen
- Toxyxer
- @TravCav
- Troy Tae
- TruongSinh Tran-Nguyen
- Tycho Grouwstra
- uhyo
- Vadi Taslim
- Vakhurin Sergey
- Valera Rozuvan
- Vilic Vane
- Vimal Raghubir
- Vladimir Kurchatkin
- Vladimir Matveev
- Vyacheslav Pukhanov
- Wenlu Wang
- Wes Souza
- Wesley Wigham
- William Orr
- Wilson Hobbs
- xiaofa
- xl1
- Yacine Hmito
- Yang Cao
- York Yao
- @yortus
- Yoshiki Shibukawa
- Yuichi Nukiyama
- Yuval Greenfield
- Yuya Tanaka
- Z
- Zeeshan Ahmed
- Zev Spitz
- Zhengbo Li
- Zixiang Li
- @Zzzen
- 阿卡琳

46
node_modules/typescript/README.md generated vendored
View File

@ -1,16 +1,15 @@
# TypeScript
[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![Build Status](https://travis-ci.org/microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/Microsoft/TypeScript)
[![Build Status](https://travis-ci.org/microsoft/TypeScript.svg?branch=master)](https://travis-ci.org/microsoft/TypeScript)
[![VSTS Build Status](https://dev.azure.com/typescript/TypeScript/_apis/build/status/Typescript/node10)](https://dev.azure.com/typescript/TypeScript/_build/latest?definitionId=4&view=logs)
[![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)
[![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)
[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types to JavaScript that support tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescript).
Find others who are using TypeScript at [our community page](https://www.typescriptlang.org/community/).
## Installing
For the latest stable version:
@ -27,14 +26,15 @@ npm install -g typescript@next
## Contribute
There are many ways to [contribute](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.
* [Submit bugs](https://github.com/Microsoft/TypeScript/issues) and help us verify fixes as they are checked in.
* Review the [source code changes](https://github.com/Microsoft/TypeScript/pulls).
There are many ways to [contribute](https://github.com/microsoft/TypeScript/blob/master/CONTRIBUTING.md) to TypeScript.
* [Submit bugs](https://github.com/microsoft/TypeScript/issues) and help us verify fixes as they are checked in.
* Review the [source code changes](https://github.com/microsoft/TypeScript/pulls).
* Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript).
* Help each other in the [TypeScript Community Discord](https://discord.gg/typescript).
* Join the [#typescript](https://twitter.com/search?q=%23TypeScript) discussion on Twitter.
* [Contribute bug fixes](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md).
* Read the language specification ([docx](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),
[pdf](https://github.com/Microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)).
* [Contribute bug fixes](https://github.com/microsoft/TypeScript/blob/master/CONTRIBUTING.md).
* Read the language specification ([docx](https://github.com/microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.docx?raw=true),
[pdf](https://github.com/microsoft/TypeScript/blob/master/doc/TypeScript%20Language%20Specification.pdf?raw=true), [md](https://github.com/microsoft/TypeScript/blob/master/doc/spec.md)).
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see
the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com)
@ -42,9 +42,9 @@ with any additional questions or comments.
## Documentation
* [Quick tutorial](https://www.typescriptlang.org/docs/tutorial.html)
* [TypeScript in 5 minutes](https://www.typescriptlang.org/docs/handbook/typescript-in-5-minutes.html)
* [Programming handbook](https://www.typescriptlang.org/docs/handbook/basic-types.html)
* [Language specification](https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)
* [Language specification](https://github.com/microsoft/TypeScript/blob/master/doc/spec.md)
* [Homepage](https://www.typescriptlang.org/)
## Building
@ -54,7 +54,7 @@ In order to build the TypeScript compiler, ensure that you have [Git](https://gi
Clone a copy of the repo:
```bash
git clone https://github.com/Microsoft/TypeScript.git
git clone https://github.com/microsoft/TypeScript.git
```
Change to the TypeScript directory:
@ -73,16 +73,24 @@ npm install
Use one of the following to build and test:
```
gulp local # Build the compiler into built/local
gulp clean # Delete the built compiler
gulp local # Build the compiler into built/local.
gulp clean # Delete the built compiler.
gulp LKG # Replace the last known good with the built one.
# Bootstrapping step to be executed when the built compiler reaches a stable state.
gulp tests # Build the test infrastructure using the built compiler.
gulp runtests # Run tests using the built compiler and test infrastructure.
# You can override the host or specify a test for this command.
# Use --host=<hostName> or --tests=<testPath>.
# Some low-value tests are skipped when not on a CI machine - you can use the
# --skipPercent=0 command to override this behavior and run all tests locally.
# You can override the specific suite runner used or specify a test for this command.
# Use --tests=<testPath> for a specific test and/or --runner=<runnerName> for a specific suite.
# Valid runners include conformance, compiler, fourslash, project, user, and docker
# The user and docker runners are extended test suite runners - the user runner
# works on disk in the tests/cases/user directory, while the docker runner works in containers.
# You'll need to have the docker executable in your system path for the docker runner to work.
gulp runtests-parallel # Like runtests, but split across multiple threads. Uses a number of threads equal to the system
# core count by default. Use --workers=<number> to adjust this.
gulp baseline-accept # This replaces the baseline test results with the results obtained from gulp runtests.
gulp lint # Runs tslint on the TypeScript source.
gulp lint # Runs eslint on the TypeScript source.
gulp help # List the above commands.
```
@ -96,4 +104,4 @@ node built/local/tsc.js hello.ts
## Roadmap
For details on our planned features and future direction please refer to our [roadmap](https://github.com/Microsoft/TypeScript/wiki/Roadmap).
For details on our planned features and future direction please refer to our [roadmap](https://github.com/microsoft/TypeScript/wiki/Roadmap).

View File

@ -17,13 +17,7 @@ and limitations under the License.
"use strict";
var fs = require("fs");
function pipeExists(name) {
try {
fs.statSync(name);
return true;
}
catch (e) {
return false;
}
return fs.existsSync(name);
}
function createCancellationToken(args) {
var cancellationPipeName;

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -29,10 +29,6 @@ interface AudioParam {
interface AudioParamMap extends ReadonlyMap<string, AudioParam> {
}
interface AudioTrackList {
[Symbol.iterator](): IterableIterator<AudioTrack>;
}
interface BaseAudioContext {
createIIRFilter(feedforward: Iterable<number>, feedback: Iterable<number>): IIRFilterNode;
createPeriodicWave(real: Iterable<number>, imag: Iterable<number>, constraints?: PeriodicWaveConstraints): PeriodicWave;
@ -245,7 +241,7 @@ interface SpeechRecognitionResultList {
}
interface StyleSheetList {
[Symbol.iterator](): IterableIterator<StyleSheet>;
[Symbol.iterator](): IterableIterator<CSSStyleSheet>;
}
interface TextTrackCueList {
@ -280,10 +276,6 @@ interface VRDisplay {
requestPresent(layers: Iterable<VRLayer>): Promise<void>;
}
interface VideoTrackList {
[Symbol.iterator](): IterableIterator<VideoTrack>;
}
interface WEBGL_draw_buffers {
drawBuffersWEBGL(buffers: Iterable<GLenum>): void;
}
@ -293,37 +285,37 @@ interface WebAuthentication {
}
interface WebGL2RenderingContextBase {
clearBufferfv(buffer: GLenum, drawbuffer: GLint, values: Iterable<GLfloat>, srcOffset?: GLuint): void;
clearBufferiv(buffer: GLenum, drawbuffer: GLint, values: Iterable<GLint>, srcOffset?: GLuint): void;
clearBufferuiv(buffer: GLenum, drawbuffer: GLint, values: Iterable<GLuint>, srcOffset?: GLuint): void;
drawBuffers(buffers: Iterable<GLenum>): void;
getActiveUniforms(program: WebGLProgram, uniformIndices: Iterable<GLuint>, pname: GLenum): any;
getUniformIndices(program: WebGLProgram, uniformNames: Iterable<string>): Iterable<GLuint> | null;
invalidateFramebuffer(target: GLenum, attachments: Iterable<GLenum>): void;
invalidateSubFramebuffer(target: GLenum, attachments: Iterable<GLenum>, x: GLint, y: GLint, width: GLsizei, height: GLsizei): void;
transformFeedbackVaryings(program: WebGLProgram, varyings: Iterable<string>, bufferMode: GLenum): void;
uniform1uiv(location: WebGLUniformLocation | null, data: Iterable<GLuint>, srcOffset?: GLuint, srcLength?: GLuint): void;
uniform2uiv(location: WebGLUniformLocation | null, data: Iterable<GLuint>, srcOffset?: GLuint, srcLength?: GLuint): void;
uniform3uiv(location: WebGLUniformLocation | null, data: Iterable<GLuint>, srcOffset?: GLuint, srcLength?: GLuint): void;
uniform4uiv(location: WebGLUniformLocation | null, data: Iterable<GLuint>, srcOffset?: GLuint, srcLength?: GLuint): void;
uniformMatrix3x2fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
uniformMatrix4x2fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
uniformMatrix2x3fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
uniformMatrix4x3fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
uniformMatrix2x4fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
uniformMatrix3x2fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
uniformMatrix3x4fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
uniformMatrix4x2fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
uniformMatrix4x3fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
vertexAttribI4iv(index: GLuint, values: Iterable<GLint>): void;
vertexAttribI4uiv(index: GLuint, values: Iterable<GLuint>): void;
drawBuffers(buffers: Iterable<GLenum>): void;
clearBufferfv(buffer: GLenum, drawbuffer: GLint, values: Iterable<GLfloat>, srcOffset?: GLuint): void;
clearBufferiv(buffer: GLenum, drawbuffer: GLint, values: Iterable<GLint>, srcOffset?: GLuint): void;
clearBufferuiv(buffer: GLenum, drawbuffer: GLint, values: Iterable<GLuint>, srcOffset?: GLuint): void;
transformFeedbackVaryings(program: WebGLProgram, varyings: Iterable<string>, bufferMode: GLenum): void;
getUniformIndices(program: WebGLProgram, uniformNames: Iterable<string>): Iterable<GLuint> | null;
getActiveUniforms(program: WebGLProgram, uniformIndices: Iterable<GLuint>, pname: GLenum): any;
}
interface WebGL2RenderingContextOverloads {
uniform1fv(location: WebGLUniformLocation | null, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
uniform2fv(location: WebGLUniformLocation | null, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
uniform3fv(location: WebGLUniformLocation | null, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
uniform4fv(location: WebGLUniformLocation | null, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
uniform1iv(location: WebGLUniformLocation | null, data: Iterable<GLint>, srcOffset?: GLuint, srcLength?: GLuint): void;
uniform2fv(location: WebGLUniformLocation | null, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
uniform2iv(location: WebGLUniformLocation | null, data: Iterable<GLint>, srcOffset?: GLuint, srcLength?: GLuint): void;
uniform3fv(location: WebGLUniformLocation | null, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
uniform3iv(location: WebGLUniformLocation | null, data: Iterable<GLint>, srcOffset?: GLuint, srcLength?: GLuint): void;
uniform4fv(location: WebGLUniformLocation | null, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
uniform4iv(location: WebGLUniformLocation | null, data: Iterable<GLint>, srcOffset?: GLuint, srcLength?: GLuint): void;
uniformMatrix2fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
uniformMatrix3fv(location: WebGLUniformLocation | null, transpose: GLboolean, data: Iterable<GLfloat>, srcOffset?: GLuint, srcLength?: GLuint): void;
@ -339,12 +331,12 @@ interface WebGLRenderingContextBase {
interface WebGLRenderingContextOverloads {
uniform1fv(location: WebGLUniformLocation | null, v: Iterable<GLfloat>): void;
uniform2fv(location: WebGLUniformLocation | null, v: Iterable<GLfloat>): void;
uniform3fv(location: WebGLUniformLocation | null, v: Iterable<GLfloat>): void;
uniform4fv(location: WebGLUniformLocation | null, v: Iterable<GLfloat>): void;
uniform1iv(location: WebGLUniformLocation | null, v: Iterable<GLint>): void;
uniform2fv(location: WebGLUniformLocation | null, v: Iterable<GLfloat>): void;
uniform2iv(location: WebGLUniformLocation | null, v: Iterable<GLint>): void;
uniform3fv(location: WebGLUniformLocation | null, v: Iterable<GLfloat>): void;
uniform3iv(location: WebGLUniformLocation | null, v: Iterable<GLint>): void;
uniform4fv(location: WebGLUniformLocation | null, v: Iterable<GLfloat>): void;
uniform4iv(location: WebGLUniformLocation | null, v: Iterable<GLint>): void;
uniformMatrix2fv(location: WebGLUniformLocation | null, transpose: GLboolean, value: Iterable<GLfloat>): void;
uniformMatrix3fv(location: WebGLUniformLocation | null, transpose: GLboolean, value: Iterable<GLfloat>): void;

View File

@ -30,7 +30,7 @@ interface Map<K, V> {
interface MapConstructor {
new(): Map<any, any>;
new<K, V>(entries?: ReadonlyArray<readonly [K, V]> | null): Map<K, V>;
new<K, V>(entries?: readonly (readonly [K, V])[] | null): Map<K, V>;
readonly prototype: Map<any, any>;
}
declare var Map: MapConstructor;
@ -50,7 +50,7 @@ interface WeakMap<K extends object, V> {
}
interface WeakMapConstructor {
new <K extends object = object, V = any>(entries?: ReadonlyArray<[K, V]> | null): WeakMap<K, V>;
new <K extends object = object, V = any>(entries?: readonly [K, V][] | null): WeakMap<K, V>;
readonly prototype: WeakMap<object, any>;
}
declare var WeakMap: WeakMapConstructor;
@ -65,7 +65,7 @@ interface Set<T> {
}
interface SetConstructor {
new <T = any>(values?: ReadonlyArray<T> | null): Set<T>;
new <T = any>(values?: readonly T[] | null): Set<T>;
readonly prototype: Set<any>;
}
declare var Set: SetConstructor;
@ -83,7 +83,7 @@ interface WeakSet<T extends object> {
}
interface WeakSetConstructor {
new <T extends object = object>(values?: ReadonlyArray<T> | null): WeakSet<T>;
new <T extends object = object>(values?: readonly T[] | null): WeakSet<T>;
readonly prototype: WeakSet<object>;
}
declare var WeakSet: WeakSetConstructor;

View File

@ -224,13 +224,13 @@ interface NumberConstructor {
* number. Only finite values of the type number, result in true.
* @param number A numeric value.
*/
isFinite(number: number): boolean;
isFinite(number: unknown): boolean;
/**
* Returns true if the value passed is an integer, false otherwise.
* @param number A numeric value.
*/
isInteger(number: number): boolean;
isInteger(number: unknown): boolean;
/**
* Returns a Boolean value that indicates whether a value is the reserved value NaN (not a
@ -238,13 +238,13 @@ interface NumberConstructor {
* to a number. Only values of the type number, that are also NaN, result in true.
* @param number A numeric value.
*/
isNaN(number: number): boolean;
isNaN(number: unknown): boolean;
/**
* Returns true if the value passed is a safe integer.
* @param number A numeric value.
*/
isSafeInteger(number: number): boolean;
isSafeInteger(number: unknown): boolean;
/**
* The value of the largest integer n such that n and n + 1 are both exactly representable as
@ -349,8 +349,8 @@ interface ReadonlyArray<T> {
* @param thisArg If provided, it will be used as the this value for each invocation of
* predicate. If it is not provided, undefined is used instead.
*/
find<S extends T>(predicate: (this: void, value: T, index: number, obj: ReadonlyArray<T>) => value is S, thisArg?: any): S | undefined;
find(predicate: (value: T, index: number, obj: ReadonlyArray<T>) => unknown, thisArg?: any): T | undefined;
find<S extends T>(predicate: (this: void, value: T, index: number, obj: readonly T[]) => value is S, thisArg?: any): S | undefined;
find(predicate: (value: T, index: number, obj: readonly T[]) => unknown, thisArg?: any): T | undefined;
/**
* Returns the index of the first element in the array where predicate is true, and -1
@ -361,7 +361,7 @@ interface ReadonlyArray<T> {
* @param thisArg If provided, it will be used as the this value for each invocation of
* predicate. If it is not provided, undefined is used instead.
*/
findIndex(predicate: (value: T, index: number, obj: ReadonlyArray<T>) => unknown, thisArg?: any): number;
findIndex(predicate: (value: T, index: number, obj: readonly T[]) => unknown, thisArg?: any): number;
}
interface RegExp {

View File

@ -21,9 +21,9 @@ and limitations under the License.
/// <reference lib="es5" />
/// <reference lib="es2015.core" />
/// <reference lib="es2015.collection" />
/// <reference lib="es2015.iterable" />
/// <reference lib="es2015.generator" />
/// <reference lib="es2015.promise" />
/// <reference lib="es2015.iterable" />
/// <reference lib="es2015.proxy" />
/// <reference lib="es2015.reflect" />
/// <reference lib="es2015.symbol" />

View File

@ -220,15 +220,23 @@ interface PromiseConstructor {
/**
* Creates a Promise that is resolved with an array of results when all of the provided Promises
* resolve, or rejected when any Promise is rejected.
* @param values An array of Promises.
* @param values An iterable of Promises.
* @returns A new Promise.
*/
all<TAll>(values: Iterable<TAll | PromiseLike<TAll>>): Promise<TAll[]>;
all<T>(values: Iterable<T | PromiseLike<T>>): Promise<T[]>;
/**
* Creates a Promise that is resolved or rejected when any of the provided Promises are resolved
* or rejected.
* @param values An array of Promises.
* @param values An iterable of Promises.
* @returns A new Promise.
*/
race<T>(values: Iterable<T>): Promise<T extends PromiseLike<infer U> ? U : T>;
/**
* Creates a Promise that is resolved or rejected when any of the provided Promises are resolved
* or rejected.
* @param values An iterable of Promises.
* @returns A new Promise.
*/
race<T>(values: Iterable<T | PromiseLike<T>>): Promise<T>;

View File

@ -38,7 +38,7 @@ interface PromiseConstructor {
* @param values An array of Promises.
* @returns A new Promise.
*/
all<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike <T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>, T7 | PromiseLike<T7>, T8 | PromiseLike<T8>, T9 | PromiseLike<T9>, T10 | PromiseLike<T10>]): Promise<[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10]>;
all<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>, T7 | PromiseLike<T7>, T8 | PromiseLike<T8>, T9 | PromiseLike<T9>, T10 | PromiseLike<T10>]): Promise<[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10]>;
/**
* Creates a Promise that is resolved with an array of results when all of the provided Promises
@ -46,7 +46,7 @@ interface PromiseConstructor {
* @param values An array of Promises.
* @returns A new Promise.
*/
all<T1, T2, T3, T4, T5, T6, T7, T8, T9>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike <T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>, T7 | PromiseLike<T7>, T8 | PromiseLike<T8>, T9 | PromiseLike<T9>]): Promise<[T1, T2, T3, T4, T5, T6, T7, T8, T9]>;
all<T1, T2, T3, T4, T5, T6, T7, T8, T9>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>, T7 | PromiseLike<T7>, T8 | PromiseLike<T8>, T9 | PromiseLike<T9>]): Promise<[T1, T2, T3, T4, T5, T6, T7, T8, T9]>;
/**
* Creates a Promise that is resolved with an array of results when all of the provided Promises
@ -54,7 +54,7 @@ interface PromiseConstructor {
* @param values An array of Promises.
* @returns A new Promise.
*/
all<T1, T2, T3, T4, T5, T6, T7, T8>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike <T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>, T7 | PromiseLike<T7>, T8 | PromiseLike<T8>]): Promise<[T1, T2, T3, T4, T5, T6, T7, T8]>;
all<T1, T2, T3, T4, T5, T6, T7, T8>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>, T7 | PromiseLike<T7>, T8 | PromiseLike<T8>]): Promise<[T1, T2, T3, T4, T5, T6, T7, T8]>;
/**
* Creates a Promise that is resolved with an array of results when all of the provided Promises
@ -62,7 +62,7 @@ interface PromiseConstructor {
* @param values An array of Promises.
* @returns A new Promise.
*/
all<T1, T2, T3, T4, T5, T6, T7>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike <T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>, T7 | PromiseLike<T7>]): Promise<[T1, T2, T3, T4, T5, T6, T7]>;
all<T1, T2, T3, T4, T5, T6, T7>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>, T7 | PromiseLike<T7>]): Promise<[T1, T2, T3, T4, T5, T6, T7]>;
/**
* Creates a Promise that is resolved with an array of results when all of the provided Promises
@ -70,7 +70,7 @@ interface PromiseConstructor {
* @param values An array of Promises.
* @returns A new Promise.
*/
all<T1, T2, T3, T4, T5, T6>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike <T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>]): Promise<[T1, T2, T3, T4, T5, T6]>;
all<T1, T2, T3, T4, T5, T6>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>, T5 | PromiseLike<T5>, T6 | PromiseLike<T6>]): Promise<[T1, T2, T3, T4, T5, T6]>;
/**
* Creates a Promise that is resolved with an array of results when all of the provided Promises
@ -78,7 +78,7 @@ interface PromiseConstructor {
* @param values An array of Promises.
* @returns A new Promise.
*/
all<T1, T2, T3, T4, T5>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike <T4>, T5 | PromiseLike<T5>]): Promise<[T1, T2, T3, T4, T5]>;
all<T1, T2, T3, T4, T5>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>, T5 | PromiseLike<T5>]): Promise<[T1, T2, T3, T4, T5]>;
/**
* Creates a Promise that is resolved with an array of results when all of the provided Promises
@ -86,7 +86,7 @@ interface PromiseConstructor {
* @param values An array of Promises.
* @returns A new Promise.
*/
all<T1, T2, T3, T4>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike <T4>]): Promise<[T1, T2, T3, T4]>;
all<T1, T2, T3, T4>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>, T4 | PromiseLike<T4>]): Promise<[T1, T2, T3, T4]>;
/**
* Creates a Promise that is resolved with an array of results when all of the provided Promises
@ -94,7 +94,7 @@ interface PromiseConstructor {
* @param values An array of Promises.
* @returns A new Promise.
*/
all<T1, T2, T3>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>]): Promise<[T1, T2, T3]>;
all<T1, T2, T3>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>, T3 | PromiseLike<T3>]): Promise<[T1, T2, T3]>;
/**
* Creates a Promise that is resolved with an array of results when all of the provided Promises
@ -102,7 +102,7 @@ interface PromiseConstructor {
* @param values An array of Promises.
* @returns A new Promise.
*/
all<T1, T2>(values: [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>]): Promise<[T1, T2]>;
all<T1, T2>(values: readonly [T1 | PromiseLike<T1>, T2 | PromiseLike<T2>]): Promise<[T1, T2]>;
/**
* Creates a Promise that is resolved with an array of results when all of the provided Promises
@ -110,7 +110,10 @@ interface PromiseConstructor {
* @param values An array of Promises.
* @returns A new Promise.
*/
all<T>(values: (T | PromiseLike<T>)[]): Promise<T[]>;
all<T>(values: readonly (T | PromiseLike<T>)[]): Promise<T[]>;
// see: lib.es2015.iterable.d.ts
// all<T>(values: Iterable<T | PromiseLike<T>>): Promise<T[]>;
/**
* Creates a Promise that is resolved or rejected when any of the provided Promises are resolved
@ -118,15 +121,10 @@ interface PromiseConstructor {
* @param values An array of Promises.
* @returns A new Promise.
*/
race<T>(values: T[]): Promise<T extends PromiseLike<infer U> ? U : T>;
race<T>(values: readonly T[]): Promise<T extends PromiseLike<infer U> ? U : T>;
/**
* Creates a Promise that is resolved or rejected when any of the provided Promises are resolved
* or rejected.
* @param values An iterable of Promises.
* @returns A new Promise.
*/
race<T>(values: Iterable<T>): Promise<T extends PromiseLike<infer U> ? U : T>;
// see: lib.es2015.iterable.d.ts
// race<T>(values: Iterable<T>): Promise<T extends PromiseLike<infer U> ? U : T>;
/**
* Creates a new rejected promise for the provided reason.

View File

@ -227,7 +227,8 @@ interface RegExpConstructor {
interface String {
/**
* Matches a string an object that supports being matched against, and returns an array containing the results of that search.
* Matches a string or an object that supports being matched against, and returns an array
* containing the results of that search, or null if no matches are found.
* @param matcher An object that supports being matched against.
*/
match(matcher: { [Symbol.match](string: string): RegExpMatchArray | null; }): RegExpMatchArray | null;
@ -273,7 +274,7 @@ interface Int8Array {
}
interface Uint8Array {
readonly [Symbol.toStringTag]: "UInt8Array";
readonly [Symbol.toStringTag]: "Uint8Array";
}
interface Uint8ClampedArray {

View File

@ -22,7 +22,7 @@ and limitations under the License.
interface AsyncGenerator<T = unknown, TReturn = any, TNext = unknown> extends AsyncIterator<T, TReturn, TNext> {
// NOTE: 'next' is defined using a tuple to ensure we report the correct assignability errors in all places.
next(...args: [] | [TNext | PromiseLike<TNext>]): Promise<IteratorResult<T, TReturn>>;
next(...args: [] | [TNext]): Promise<IteratorResult<T, TReturn>>;
return(value: TReturn | PromiseLike<TReturn>): Promise<IteratorResult<T, TReturn>>;
throw(e: any): Promise<IteratorResult<T, TReturn>>;
[Symbol.asyncIterator](): AsyncGenerator<T, TReturn, TNext>;

View File

@ -31,7 +31,7 @@ interface SymbolConstructor {
interface AsyncIterator<T, TReturn = any, TNext = undefined> {
// NOTE: 'next' is defined using a tuple to ensure we report the correct assignability errors in all places.
next(...args: [] | [TNext | PromiseLike<TNext>]): Promise<IteratorResult<T, TReturn>>;
next(...args: [] | [TNext]): Promise<IteratorResult<T, TReturn>>;
return?(value?: TReturn | PromiseLike<TReturn>): Promise<IteratorResult<T, TReturn>>;
throw?(e?: any): Promise<IteratorResult<T, TReturn>>;
}

View File

@ -19,8 +19,8 @@ and limitations under the License.
/// <reference lib="es2017" />
/// <reference lib="es2018.asyncgenerator" />
/// <reference lib="es2018.asynciterable" />
/// <reference lib="es2018.asyncgenerator" />
/// <reference lib="es2018.promise" />
/// <reference lib="es2018.regexp" />
/// <reference lib="es2018.intl" />

View File

@ -19,25 +19,35 @@ and limitations under the License.
declare namespace Intl {
// http://cldr.unicode.org/index/cldr-spec/plural-rules#TOC-Determining-Plural-Categories
type LDMLPluralRule = "zero" | "one" | "two" | "few" | "many" | "other";
type PluralRuleType = "cardinal" | "ordinal";
interface PluralRulesOptions {
localeMatcher?: 'lookup' | 'best fit';
type?: 'cardinal' | 'ordinal';
localeMatcher?: "lookup" | "best fit";
type?: PluralRuleType;
minimumIntegerDigits?: number;
minimumFractionDigits?: number;
maximumFractionDigits?: number;
minimumSignificantDigits?: number;
maximumSignificantDigits?: number;
}
interface ResolvedPluralRulesOptions {
locale: string;
pluralCategories: string[];
type: 'cardinal' | 'ordinal';
pluralCategories: LDMLPluralRule[];
type: PluralRuleType;
minimumIntegerDigits: number;
minimumFractionDigits: number;
maximumFractionDigits: number;
minimumSignificantDigits: number;
maximumSignificantDigits: number;
minimumSignificantDigits?: number;
maximumSignificantDigits?: number;
}
interface PluralRules {
resolvedOptions(): ResolvedPluralRulesOptions;
select(n: number): string;
select(n: number): LDMLPluralRule;
}
const PluralRules: {

View File

@ -18,6 +18,13 @@ and limitations under the License.
/// <reference no-default-lib="true"/>
type FlatArray<Arr, Depth extends number> = {
"done": Arr,
"recur": Arr extends ReadonlyArray<infer InnerArr>
? FlatArray<InnerArr, [-1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20][Depth]>
: Arr
}[Depth extends -1 ? "done" : "recur"];
interface ReadonlyArray<T> {
/**
@ -42,94 +49,10 @@ interface ReadonlyArray<T> {
*
* @param depth The maximum recursion depth
*/
flat<U>(this:
ReadonlyArray<U[][][][]> |
ReadonlyArray<ReadonlyArray<U[][][]>> |
ReadonlyArray<ReadonlyArray<U[][]>[]> |
ReadonlyArray<ReadonlyArray<U[]>[][]> |
ReadonlyArray<ReadonlyArray<U>[][][]> |
ReadonlyArray<ReadonlyArray<ReadonlyArray<U[][]>>> |
ReadonlyArray<ReadonlyArray<ReadonlyArray<U>[][]>> |
ReadonlyArray<ReadonlyArray<ReadonlyArray<U>>[][]> |
ReadonlyArray<ReadonlyArray<ReadonlyArray<U>[]>[]> |
ReadonlyArray<ReadonlyArray<ReadonlyArray<U[]>>[]> |
ReadonlyArray<ReadonlyArray<ReadonlyArray<U[]>[]>> |
ReadonlyArray<ReadonlyArray<ReadonlyArray<ReadonlyArray<U[]>>>> |
ReadonlyArray<ReadonlyArray<ReadonlyArray<ReadonlyArray<U>[]>>> |
ReadonlyArray<ReadonlyArray<ReadonlyArray<ReadonlyArray<U>>[]>> |
ReadonlyArray<ReadonlyArray<ReadonlyArray<ReadonlyArray<U>>>[]> |
ReadonlyArray<ReadonlyArray<ReadonlyArray<ReadonlyArray<ReadonlyArray<U>>>>>,
depth: 4): U[];
/**
* Returns a new array with all sub-array elements concatenated into it recursively up to the
* specified depth.
*
* @param depth The maximum recursion depth
*/
flat<U>(this:
ReadonlyArray<U[][][]> |
ReadonlyArray<ReadonlyArray<U>[][]> |
ReadonlyArray<ReadonlyArray<U[]>[]> |
ReadonlyArray<ReadonlyArray<U[][]>> |
ReadonlyArray<ReadonlyArray<ReadonlyArray<U[]>>> |
ReadonlyArray<ReadonlyArray<ReadonlyArray<U>[]>> |
ReadonlyArray<ReadonlyArray<ReadonlyArray<U>>[]> |
ReadonlyArray<ReadonlyArray<ReadonlyArray<ReadonlyArray<U>>>>,
depth: 3): U[];
/**
* Returns a new array with all sub-array elements concatenated into it recursively up to the
* specified depth.
*
* @param depth The maximum recursion depth
*/
flat<U>(this:
ReadonlyArray<U[][]> |
ReadonlyArray<ReadonlyArray<U[]>> |
ReadonlyArray<ReadonlyArray<U>[]> |
ReadonlyArray<ReadonlyArray<ReadonlyArray<U>>>,
depth: 2): U[];
/**
* Returns a new array with all sub-array elements concatenated into it recursively up to the
* specified depth.
*
* @param depth The maximum recursion depth
*/
flat<U>(this:
ReadonlyArray<U[]> |
ReadonlyArray<ReadonlyArray<U>>,
depth?: 1
): U[];
/**
* Returns a new array with all sub-array elements concatenated into it recursively up to the
* specified depth.
*
* @param depth The maximum recursion depth
*/
flat<U>(this:
ReadonlyArray<U>,
depth: 0
): U[];
/**
* Returns a new array with all sub-array elements concatenated into it recursively up to the
* specified depth. If no depth is provided, flat method defaults to the depth of 1.
*
* @param depth The maximum recursion depth
*/
flat<U>(depth?: number): any[];
flat<A, D extends number = 1>(
this: A,
depth?: D
): FlatArray<A, D>[]
}
interface Array<T> {
@ -155,69 +78,8 @@ interface Array<T> {
*
* @param depth The maximum recursion depth
*/
flat<U>(this: U[][][][][][][][], depth: 7): U[];
/**
* Returns a new array with all sub-array elements concatenated into it recursively up to the
* specified depth.
*
* @param depth The maximum recursion depth
*/
flat<U>(this: U[][][][][][][], depth: 6): U[];
/**
* Returns a new array with all sub-array elements concatenated into it recursively up to the
* specified depth.
*
* @param depth The maximum recursion depth
*/
flat<U>(this: U[][][][][][], depth: 5): U[];
/**
* Returns a new array with all sub-array elements concatenated into it recursively up to the
* specified depth.
*
* @param depth The maximum recursion depth
*/
flat<U>(this: U[][][][][], depth: 4): U[];
/**
* Returns a new array with all sub-array elements concatenated into it recursively up to the
* specified depth.
*
* @param depth The maximum recursion depth
*/
flat<U>(this: U[][][][], depth: 3): U[];
/**
* Returns a new array with all sub-array elements concatenated into it recursively up to the
* specified depth.
*
* @param depth The maximum recursion depth
*/
flat<U>(this: U[][][], depth: 2): U[];
/**
* Returns a new array with all sub-array elements concatenated into it recursively up to the
* specified depth.
*
* @param depth The maximum recursion depth
*/
flat<U>(this: U[][], depth?: 1): U[];
/**
* Returns a new array with all sub-array elements concatenated into it recursively up to the
* specified depth.
*
* @param depth The maximum recursion depth
*/
flat<U>(this: U[], depth: 0): U[];
/**
* Returns a new array with all sub-array elements concatenated into it recursively up to the
* specified depth. If no depth is provided, flat method defaults to the depth of 1.
*
* @param depth The maximum recursion depth
*/
flat<U>(depth?: number): any[];
flat<A, D extends number = 1>(
this: A,
depth?: D
): FlatArray<A, D>[]
}

View File

@ -25,7 +25,7 @@ interface ObjectConstructor {
* Returns an object created by key-value entries for properties and methods
* @param entries An iterable object that contains key-value entries for properties and methods.
*/
fromEntries<T = any>(entries: Iterable<readonly [PropertyKey, T]>): { [k in PropertyKey]: T };
fromEntries<T = any>(entries: Iterable<readonly [PropertyKey, T]>): { [k: string]: T };
/**
* Returns an object created by key-value entries for properties and methods

View File

@ -20,7 +20,7 @@ and limitations under the License.
interface Symbol {
/**
* expose the [[Description]] internal slot of a symbol directly
* Expose the [[Description]] internal slot of a symbol directly.
*/
readonly description: string;
readonly description: string | undefined;
}

635
node_modules/typescript/lib/lib.es2020.bigint.d.ts generated vendored Normal file
View File

@ -0,0 +1,635 @@
/*! *****************************************************************************
Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of the
License at http://www.apache.org/licenses/LICENSE-2.0
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
MERCHANTABLITY OR NON-INFRINGEMENT.
See the Apache Version 2.0 License for specific language governing permissions
and limitations under the License.
***************************************************************************** */
/// <reference no-default-lib="true"/>
interface BigInt {
/**
* Returns a string representation of an object.
* @param radix Specifies a radix for converting numeric values to strings.
*/
toString(radix?: number): string;
/** Returns a string representation appropriate to the host environment's current locale. */
toLocaleString(): string;
/** Returns the primitive value of the specified object. */
valueOf(): bigint;
readonly [Symbol.toStringTag]: "BigInt";
}
interface BigIntConstructor {
(value?: any): bigint;
readonly prototype: BigInt;
/**
* Interprets the low bits of a BigInt as a 2's-complement signed integer.
* All higher bits are discarded.
* @param bits The number of low bits to use
* @param int The BigInt whose bits to extract
*/
asIntN(bits: number, int: bigint): bigint;
/**
* Interprets the low bits of a BigInt as an unsigned integer.
* All higher bits are discarded.
* @param bits The number of low bits to use
* @param int The BigInt whose bits to extract
*/
asUintN(bits: number, int: bigint): bigint;
}
declare var BigInt: BigIntConstructor;
/**
* A typed array of 64-bit signed integer values. The contents are initialized to 0. If the
* requested number of bytes could not be allocated, an exception is raised.
*/
interface BigInt64Array {
/** The size in bytes of each element in the array. */
readonly BYTES_PER_ELEMENT: number;
/** The ArrayBuffer instance referenced by the array. */
readonly buffer: ArrayBufferLike;
/** The length in bytes of the array. */
readonly byteLength: number;
/** The offset in bytes of the array. */
readonly byteOffset: number;
/**
* Returns the this object after copying a section of the array identified by start and end
* to the same array starting at position target
* @param target If target is negative, it is treated as length+target where length is the
* length of the array.
* @param start If start is negative, it is treated as length+start. If end is negative, it
* is treated as length+end.
* @param end If not specified, length of the this object is used as its default value.
*/
copyWithin(target: number, start: number, end?: number): this;
/** Yields index, value pairs for every entry in the array. */
entries(): IterableIterator<[number, bigint]>;
/**
* Determines whether all the members of an array satisfy the specified test.
* @param callbackfn A function that accepts up to three arguments. The every method calls
* the callbackfn function for each element in the array until the callbackfn returns false,
* or until the end of the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
every(callbackfn: (value: bigint, index: number, array: BigInt64Array) => boolean, thisArg?: any): boolean;
/**
* Returns the this object after filling the section identified by start and end with value
* @param value value to fill array section with
* @param start index to start filling the array at. If start is negative, it is treated as
* length+start where length is the length of the array.
* @param end index to stop filling the array at. If end is negative, it is treated as
* length+end.
*/
fill(value: bigint, start?: number, end?: number): this;
/**
* Returns the elements of an array that meet the condition specified in a callback function.
* @param callbackfn A function that accepts up to three arguments. The filter method calls
* the callbackfn function one time for each element in the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
filter(callbackfn: (value: bigint, index: number, array: BigInt64Array) => any, thisArg?: any): BigInt64Array;
/**
* Returns the value of the first element in the array where predicate is true, and undefined
* otherwise.
* @param predicate find calls predicate once for each element of the array, in ascending
* order, until it finds one where predicate returns true. If such an element is found, find
* immediately returns that element value. Otherwise, find returns undefined.
* @param thisArg If provided, it will be used as the this value for each invocation of
* predicate. If it is not provided, undefined is used instead.
*/
find(predicate: (value: bigint, index: number, array: BigInt64Array) => boolean, thisArg?: any): bigint | undefined;
/**
* Returns the index of the first element in the array where predicate is true, and -1
* otherwise.
* @param predicate find calls predicate once for each element of the array, in ascending
* order, until it finds one where predicate returns true. If such an element is found,
* findIndex immediately returns that element index. Otherwise, findIndex returns -1.
* @param thisArg If provided, it will be used as the this value for each invocation of
* predicate. If it is not provided, undefined is used instead.
*/
findIndex(predicate: (value: bigint, index: number, array: BigInt64Array) => boolean, thisArg?: any): number;
/**
* Performs the specified action for each element in an array.
* @param callbackfn A function that accepts up to three arguments. forEach calls the
* callbackfn function one time for each element in the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
forEach(callbackfn: (value: bigint, index: number, array: BigInt64Array) => void, thisArg?: any): void;
/**
* Determines whether an array includes a certain element, returning true or false as appropriate.
* @param searchElement The element to search for.
* @param fromIndex The position in this array at which to begin searching for searchElement.
*/
includes(searchElement: bigint, fromIndex?: number): boolean;
/**
* Returns the index of the first occurrence of a value in an array.
* @param searchElement The value to locate in the array.
* @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the
* search starts at index 0.
*/
indexOf(searchElement: bigint, fromIndex?: number): number;
/**
* Adds all the elements of an array separated by the specified separator string.
* @param separator A string used to separate one element of an array from the next in the
* resulting String. If omitted, the array elements are separated with a comma.
*/
join(separator?: string): string;
/** Yields each index in the array. */
keys(): IterableIterator<number>;
/**
* Returns the index of the last occurrence of a value in an array.
* @param searchElement The value to locate in the array.
* @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the
* search starts at index 0.
*/
lastIndexOf(searchElement: bigint, fromIndex?: number): number;
/** The length of the array. */
readonly length: number;
/**
* Calls a defined callback function on each element of an array, and returns an array that
* contains the results.
* @param callbackfn A function that accepts up to three arguments. The map method calls the
* callbackfn function one time for each element in the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
map(callbackfn: (value: bigint, index: number, array: BigInt64Array) => bigint, thisArg?: any): BigInt64Array;
/**
* Calls the specified callback function for all the elements in an array. The return value of
* the callback function is the accumulated result, and is provided as an argument in the next
* call to the callback function.
* @param callbackfn A function that accepts up to four arguments. The reduce method calls the
* callbackfn function one time for each element in the array.
* @param initialValue If initialValue is specified, it is used as the initial value to start
* the accumulation. The first call to the callbackfn function provides this value as an argument
* instead of an array value.
*/
reduce(callbackfn: (previousValue: bigint, currentValue: bigint, currentIndex: number, array: BigInt64Array) => bigint): bigint;
/**
* Calls the specified callback function for all the elements in an array. The return value of
* the callback function is the accumulated result, and is provided as an argument in the next
* call to the callback function.
* @param callbackfn A function that accepts up to four arguments. The reduce method calls the
* callbackfn function one time for each element in the array.
* @param initialValue If initialValue is specified, it is used as the initial value to start
* the accumulation. The first call to the callbackfn function provides this value as an argument
* instead of an array value.
*/
reduce<U>(callbackfn: (previousValue: U, currentValue: bigint, currentIndex: number, array: BigInt64Array) => U, initialValue: U): U;
/**
* Calls the specified callback function for all the elements in an array, in descending order.
* The return value of the callback function is the accumulated result, and is provided as an
* argument in the next call to the callback function.
* @param callbackfn A function that accepts up to four arguments. The reduceRight method calls
* the callbackfn function one time for each element in the array.
* @param initialValue If initialValue is specified, it is used as the initial value to start
* the accumulation. The first call to the callbackfn function provides this value as an
* argument instead of an array value.
*/
reduceRight(callbackfn: (previousValue: bigint, currentValue: bigint, currentIndex: number, array: BigInt64Array) => bigint): bigint;
/**
* Calls the specified callback function for all the elements in an array, in descending order.
* The return value of the callback function is the accumulated result, and is provided as an
* argument in the next call to the callback function.
* @param callbackfn A function that accepts up to four arguments. The reduceRight method calls
* the callbackfn function one time for each element in the array.
* @param initialValue If initialValue is specified, it is used as the initial value to start
* the accumulation. The first call to the callbackfn function provides this value as an argument
* instead of an array value.
*/
reduceRight<U>(callbackfn: (previousValue: U, currentValue: bigint, currentIndex: number, array: BigInt64Array) => U, initialValue: U): U;
/** Reverses the elements in the array. */
reverse(): this;
/**
* Sets a value or an array of values.
* @param array A typed or untyped array of values to set.
* @param offset The index in the current array at which the values are to be written.
*/
set(array: ArrayLike<bigint>, offset?: number): void;
/**
* Returns a section of an array.
* @param start The beginning of the specified portion of the array.
* @param end The end of the specified portion of the array.
*/
slice(start?: number, end?: number): BigInt64Array;
/**
* Determines whether the specified callback function returns true for any element of an array.
* @param callbackfn A function that accepts up to three arguments. The some method calls the
* callbackfn function for each element in the array until the callbackfn returns true, or until
* the end of the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
some(callbackfn: (value: bigint, index: number, array: BigInt64Array) => boolean, thisArg?: any): boolean;
/**
* Sorts the array.
* @param compareFn The function used to determine the order of the elements. If omitted, the elements are sorted in ascending order.
*/
sort(compareFn?: (a: bigint, b: bigint) => number | bigint): this;
/**
* Gets a new BigInt64Array view of the ArrayBuffer store for this array, referencing the elements
* at begin, inclusive, up to end, exclusive.
* @param begin The index of the beginning of the array.
* @param end The index of the end of the array.
*/
subarray(begin?: number, end?: number): BigInt64Array;
/** Converts the array to a string by using the current locale. */
toLocaleString(): string;
/** Returns a string representation of the array. */
toString(): string;
/** Returns the primitive value of the specified object. */
valueOf(): BigInt64Array;
/** Yields each value in the array. */
values(): IterableIterator<bigint>;
[Symbol.iterator](): IterableIterator<bigint>;
readonly [Symbol.toStringTag]: "BigInt64Array";
[index: number]: bigint;
}
interface BigInt64ArrayConstructor {
readonly prototype: BigInt64Array;
new(length?: number): BigInt64Array;
new(array: Iterable<bigint>): BigInt64Array;
new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): BigInt64Array;
/** The size in bytes of each element in the array. */
readonly BYTES_PER_ELEMENT: number;
/**
* Returns a new array from a set of elements.
* @param items A set of elements to include in the new array object.
*/
of(...items: bigint[]): BigInt64Array;
/**
* Creates an array from an array-like or iterable object.
* @param arrayLike An array-like or iterable object to convert to an array.
* @param mapfn A mapping function to call on every element of the array.
* @param thisArg Value of 'this' used to invoke the mapfn.
*/
from(arrayLike: ArrayLike<bigint>): BigInt64Array;
from<U>(arrayLike: ArrayLike<U>, mapfn: (v: U, k: number) => bigint, thisArg?: any): BigInt64Array;
}
declare var BigInt64Array: BigInt64ArrayConstructor;
/**
* A typed array of 64-bit unsigned integer values. The contents are initialized to 0. If the
* requested number of bytes could not be allocated, an exception is raised.
*/
interface BigUint64Array {
/** The size in bytes of each element in the array. */
readonly BYTES_PER_ELEMENT: number;
/** The ArrayBuffer instance referenced by the array. */
readonly buffer: ArrayBufferLike;
/** The length in bytes of the array. */
readonly byteLength: number;
/** The offset in bytes of the array. */
readonly byteOffset: number;
/**
* Returns the this object after copying a section of the array identified by start and end
* to the same array starting at position target
* @param target If target is negative, it is treated as length+target where length is the
* length of the array.
* @param start If start is negative, it is treated as length+start. If end is negative, it
* is treated as length+end.
* @param end If not specified, length of the this object is used as its default value.
*/
copyWithin(target: number, start: number, end?: number): this;
/** Yields index, value pairs for every entry in the array. */
entries(): IterableIterator<[number, bigint]>;
/**
* Determines whether all the members of an array satisfy the specified test.
* @param callbackfn A function that accepts up to three arguments. The every method calls
* the callbackfn function for each element in the array until the callbackfn returns false,
* or until the end of the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
every(callbackfn: (value: bigint, index: number, array: BigUint64Array) => boolean, thisArg?: any): boolean;
/**
* Returns the this object after filling the section identified by start and end with value
* @param value value to fill array section with
* @param start index to start filling the array at. If start is negative, it is treated as
* length+start where length is the length of the array.
* @param end index to stop filling the array at. If end is negative, it is treated as
* length+end.
*/
fill(value: bigint, start?: number, end?: number): this;
/**
* Returns the elements of an array that meet the condition specified in a callback function.
* @param callbackfn A function that accepts up to three arguments. The filter method calls
* the callbackfn function one time for each element in the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
filter(callbackfn: (value: bigint, index: number, array: BigUint64Array) => any, thisArg?: any): BigUint64Array;
/**
* Returns the value of the first element in the array where predicate is true, and undefined
* otherwise.
* @param predicate find calls predicate once for each element of the array, in ascending
* order, until it finds one where predicate returns true. If such an element is found, find
* immediately returns that element value. Otherwise, find returns undefined.
* @param thisArg If provided, it will be used as the this value for each invocation of
* predicate. If it is not provided, undefined is used instead.
*/
find(predicate: (value: bigint, index: number, array: BigUint64Array) => boolean, thisArg?: any): bigint | undefined;
/**
* Returns the index of the first element in the array where predicate is true, and -1
* otherwise.
* @param predicate find calls predicate once for each element of the array, in ascending
* order, until it finds one where predicate returns true. If such an element is found,
* findIndex immediately returns that element index. Otherwise, findIndex returns -1.
* @param thisArg If provided, it will be used as the this value for each invocation of
* predicate. If it is not provided, undefined is used instead.
*/
findIndex(predicate: (value: bigint, index: number, array: BigUint64Array) => boolean, thisArg?: any): number;
/**
* Performs the specified action for each element in an array.
* @param callbackfn A function that accepts up to three arguments. forEach calls the
* callbackfn function one time for each element in the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
forEach(callbackfn: (value: bigint, index: number, array: BigUint64Array) => void, thisArg?: any): void;
/**
* Determines whether an array includes a certain element, returning true or false as appropriate.
* @param searchElement The element to search for.
* @param fromIndex The position in this array at which to begin searching for searchElement.
*/
includes(searchElement: bigint, fromIndex?: number): boolean;
/**
* Returns the index of the first occurrence of a value in an array.
* @param searchElement The value to locate in the array.
* @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the
* search starts at index 0.
*/
indexOf(searchElement: bigint, fromIndex?: number): number;
/**
* Adds all the elements of an array separated by the specified separator string.
* @param separator A string used to separate one element of an array from the next in the
* resulting String. If omitted, the array elements are separated with a comma.
*/
join(separator?: string): string;
/** Yields each index in the array. */
keys(): IterableIterator<number>;
/**
* Returns the index of the last occurrence of a value in an array.
* @param searchElement The value to locate in the array.
* @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the
* search starts at index 0.
*/
lastIndexOf(searchElement: bigint, fromIndex?: number): number;
/** The length of the array. */
readonly length: number;
/**
* Calls a defined callback function on each element of an array, and returns an array that
* contains the results.
* @param callbackfn A function that accepts up to three arguments. The map method calls the
* callbackfn function one time for each element in the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
map(callbackfn: (value: bigint, index: number, array: BigUint64Array) => bigint, thisArg?: any): BigUint64Array;
/**
* Calls the specified callback function for all the elements in an array. The return value of
* the callback function is the accumulated result, and is provided as an argument in the next
* call to the callback function.
* @param callbackfn A function that accepts up to four arguments. The reduce method calls the
* callbackfn function one time for each element in the array.
* @param initialValue If initialValue is specified, it is used as the initial value to start
* the accumulation. The first call to the callbackfn function provides this value as an argument
* instead of an array value.
*/
reduce(callbackfn: (previousValue: bigint, currentValue: bigint, currentIndex: number, array: BigUint64Array) => bigint): bigint;
/**
* Calls the specified callback function for all the elements in an array. The return value of
* the callback function is the accumulated result, and is provided as an argument in the next
* call to the callback function.
* @param callbackfn A function that accepts up to four arguments. The reduce method calls the
* callbackfn function one time for each element in the array.
* @param initialValue If initialValue is specified, it is used as the initial value to start
* the accumulation. The first call to the callbackfn function provides this value as an argument
* instead of an array value.
*/
reduce<U>(callbackfn: (previousValue: U, currentValue: bigint, currentIndex: number, array: BigUint64Array) => U, initialValue: U): U;
/**
* Calls the specified callback function for all the elements in an array, in descending order.
* The return value of the callback function is the accumulated result, and is provided as an
* argument in the next call to the callback function.
* @param callbackfn A function that accepts up to four arguments. The reduceRight method calls
* the callbackfn function one time for each element in the array.
* @param initialValue If initialValue is specified, it is used as the initial value to start
* the accumulation. The first call to the callbackfn function provides this value as an
* argument instead of an array value.
*/
reduceRight(callbackfn: (previousValue: bigint, currentValue: bigint, currentIndex: number, array: BigUint64Array) => bigint): bigint;
/**
* Calls the specified callback function for all the elements in an array, in descending order.
* The return value of the callback function is the accumulated result, and is provided as an
* argument in the next call to the callback function.
* @param callbackfn A function that accepts up to four arguments. The reduceRight method calls
* the callbackfn function one time for each element in the array.
* @param initialValue If initialValue is specified, it is used as the initial value to start
* the accumulation. The first call to the callbackfn function provides this value as an argument
* instead of an array value.
*/
reduceRight<U>(callbackfn: (previousValue: U, currentValue: bigint, currentIndex: number, array: BigUint64Array) => U, initialValue: U): U;
/** Reverses the elements in the array. */
reverse(): this;
/**
* Sets a value or an array of values.
* @param array A typed or untyped array of values to set.
* @param offset The index in the current array at which the values are to be written.
*/
set(array: ArrayLike<bigint>, offset?: number): void;
/**
* Returns a section of an array.
* @param start The beginning of the specified portion of the array.
* @param end The end of the specified portion of the array.
*/
slice(start?: number, end?: number): BigUint64Array;
/**
* Determines whether the specified callback function returns true for any element of an array.
* @param callbackfn A function that accepts up to three arguments. The some method calls the
* callbackfn function for each element in the array until the callbackfn returns true, or until
* the end of the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
some(callbackfn: (value: bigint, index: number, array: BigUint64Array) => boolean, thisArg?: any): boolean;
/**
* Sorts the array.
* @param compareFn The function used to determine the order of the elements. If omitted, the elements are sorted in ascending order.
*/
sort(compareFn?: (a: bigint, b: bigint) => number | bigint): this;
/**
* Gets a new BigUint64Array view of the ArrayBuffer store for this array, referencing the elements
* at begin, inclusive, up to end, exclusive.
* @param begin The index of the beginning of the array.
* @param end The index of the end of the array.
*/
subarray(begin?: number, end?: number): BigUint64Array;
/** Converts the array to a string by using the current locale. */
toLocaleString(): string;
/** Returns a string representation of the array. */
toString(): string;
/** Returns the primitive value of the specified object. */
valueOf(): BigUint64Array;
/** Yields each value in the array. */
values(): IterableIterator<bigint>;
[Symbol.iterator](): IterableIterator<bigint>;
readonly [Symbol.toStringTag]: "BigUint64Array";
[index: number]: bigint;
}
interface BigUint64ArrayConstructor {
readonly prototype: BigUint64Array;
new(length?: number): BigUint64Array;
new(array: Iterable<bigint>): BigUint64Array;
new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): BigUint64Array;
/** The size in bytes of each element in the array. */
readonly BYTES_PER_ELEMENT: number;
/**
* Returns a new array from a set of elements.
* @param items A set of elements to include in the new array object.
*/
of(...items: bigint[]): BigUint64Array;
/**
* Creates an array from an array-like or iterable object.
* @param arrayLike An array-like or iterable object to convert to an array.
* @param mapfn A mapping function to call on every element of the array.
* @param thisArg Value of 'this' used to invoke the mapfn.
*/
from(arrayLike: ArrayLike<bigint>): BigUint64Array;
from<U>(arrayLike: ArrayLike<U>, mapfn: (v: U, k: number) => bigint, thisArg?: any): BigUint64Array;
}
declare var BigUint64Array: BigUint64ArrayConstructor;
interface DataView {
/**
* Gets the BigInt64 value at the specified byte offset from the start of the view. There is
* no alignment constraint; multi-byte values may be fetched from any offset.
* @param byteOffset The place in the buffer at which the value should be retrieved.
*/
getBigInt64(byteOffset: number, littleEndian?: boolean): bigint;
/**
* Gets the BigUint64 value at the specified byte offset from the start of the view. There is
* no alignment constraint; multi-byte values may be fetched from any offset.
* @param byteOffset The place in the buffer at which the value should be retrieved.
*/
getBigUint64(byteOffset: number, littleEndian?: boolean): bigint;
/**
* Stores a BigInt64 value at the specified byte offset from the start of the view.
* @param byteOffset The place in the buffer at which the value should be set.
* @param value The value to set.
* @param littleEndian If false or undefined, a big-endian value should be written,
* otherwise a little-endian value should be written.
*/
setBigInt64(byteOffset: number, value: bigint, littleEndian?: boolean): void;
/**
* Stores a BigUint64 value at the specified byte offset from the start of the view.
* @param byteOffset The place in the buffer at which the value should be set.
* @param value The value to set.
* @param littleEndian If false or undefined, a big-endian value should be written,
* otherwise a little-endian value should be written.
*/
setBigUint64(byteOffset: number, value: bigint, littleEndian?: boolean): void;
}

View File

@ -19,5 +19,7 @@ and limitations under the License.
/// <reference lib="es2019" />
/// <reference lib="es2020.bigint" />
/// <reference lib="es2020.promise" />
/// <reference lib="es2020.string" />
/// <reference lib="es2020.symbol.wellknown" />

50
node_modules/typescript/lib/lib.es2020.promise.d.ts generated vendored Normal file
View File

@ -0,0 +1,50 @@
/*! *****************************************************************************
Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of the
License at http://www.apache.org/licenses/LICENSE-2.0
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
MERCHANTABLITY OR NON-INFRINGEMENT.
See the Apache Version 2.0 License for specific language governing permissions
and limitations under the License.
***************************************************************************** */
/// <reference no-default-lib="true"/>
interface PromiseFulfilledResult<T> {
status: "fulfilled";
value: T;
}
interface PromiseRejectedResult {
status: "rejected";
reason: any;
}
type PromiseSettledResult<T> = PromiseFulfilledResult<T> | PromiseRejectedResult;
interface PromiseConstructor {
/**
* Creates a Promise that is resolved with an array of results when all
* of the provided Promises resolve or reject.
* @param values An array of Promises.
* @returns A new Promise.
*/
allSettled<T extends readonly unknown[] | readonly [unknown]>(values: T):
Promise<{ -readonly [P in keyof T]: PromiseSettledResult<T[P] extends PromiseLike<infer U> ? U : T[P]> }>;
/**
* Creates a Promise that is resolved with an array of results when all
* of the provided Promises resolve or reject.
* @param values An array of Promises.
* @returns A new Promise.
*/
allSettled<T>(values: Iterable<T>): Promise<PromiseSettledResult<T extends PromiseLike<infer U> ? U : T>[]>;
}

View File

@ -216,7 +216,7 @@ interface ObjectConstructor {
* Prevents the modification of existing property attributes and values, and prevents the addition of new properties.
* @param o Object on which to lock the attributes.
*/
freeze<T>(a: T[]): ReadonlyArray<T>;
freeze<T>(a: T[]): readonly T[];
/**
* Prevents the modification of existing property attributes and values, and prevents the addition of new properties.
@ -318,7 +318,7 @@ declare var Function: FunctionConstructor;
/**
* Extracts the type of the 'this' parameter of a function type, or 'unknown' if the function type has no 'this' parameter.
*/
type ThisParameterType<T> = T extends (this: unknown, ...args: any[]) => any ? unknown : T extends (this: infer U, ...args: any[]) => any ? U : unknown;
type ThisParameterType<T> = T extends (this: infer U, ...args: any[]) => any ? U : unknown;
/**
* Removes the 'this' parameter from a function type.
@ -486,13 +486,13 @@ interface String {
toLowerCase(): string;
/** Converts all alphabetic characters to lowercase, taking into account the host environment's current locale. */
toLocaleLowerCase(): string;
toLocaleLowerCase(locales?: string | string[]): string;
/** Converts all the alphabetic characters in a string to uppercase. */
toUpperCase(): string;
/** Returns a string where all alphabetic characters have been converted to uppercase, taking into account the host environment's current locale. */
toLocaleUpperCase(): string;
toLocaleUpperCase(locales?: string | string[]): string;
/** Removes the leading and trailing white space and line terminator characters from a string. */
trim(): string;
@ -602,7 +602,7 @@ interface NumberConstructor {
declare var Number: NumberConstructor;
interface TemplateStringsArray extends ReadonlyArray<string> {
readonly raw: ReadonlyArray<string>;
readonly raw: readonly string[];
}
/**
@ -702,8 +702,8 @@ interface Math {
/** Returns a pseudorandom number between 0 and 1. */
random(): number;
/**
* Returns a supplied numeric expression rounded to the nearest number.
* @param x The value to be rounded to the nearest number.
* Returns a supplied numeric expression rounded to the nearest integer.
* @param x The value to be rounded to the nearest integer.
*/
round(x: number): number;
/**
@ -893,12 +893,12 @@ interface DateConstructor {
/**
* Returns the number of milliseconds between midnight, January 1, 1970 Universal Coordinated Time (UTC) (or GMT) and the specified date.
* @param year The full year designation is required for cross-century date accuracy. If year is between 0 and 99 is used, then year is assumed to be 1900 + year.
* @param month The month as an number between 0 and 11 (January to December).
* @param date The date as an number between 1 and 31.
* @param hours Must be supplied if minutes is supplied. An number from 0 to 23 (midnight to 11pm) that specifies the hour.
* @param minutes Must be supplied if seconds is supplied. An number from 0 to 59 that specifies the minutes.
* @param seconds Must be supplied if milliseconds is supplied. An number from 0 to 59 that specifies the seconds.
* @param ms An number from 0 to 999 that specifies the milliseconds.
* @param month The month as a number between 0 and 11 (January to December).
* @param date The date as a number between 1 and 31.
* @param hours Must be supplied if minutes is supplied. A number from 0 to 23 (midnight to 11pm) that specifies the hour.
* @param minutes Must be supplied if seconds is supplied. A number from 0 to 59 that specifies the minutes.
* @param seconds Must be supplied if milliseconds is supplied. A number from 0 to 59 that specifies the seconds.
* @param ms A number from 0 to 999 that specifies the milliseconds.
*/
UTC(year: number, month: number, date?: number, hours?: number, minutes?: number, seconds?: number, ms?: number): number;
now(): number;
@ -986,7 +986,7 @@ declare var Error: ErrorConstructor;
interface EvalError extends Error {
}
interface EvalErrorConstructor {
interface EvalErrorConstructor extends ErrorConstructor {
new(message?: string): EvalError;
(message?: string): EvalError;
readonly prototype: EvalError;
@ -997,7 +997,7 @@ declare var EvalError: EvalErrorConstructor;
interface RangeError extends Error {
}
interface RangeErrorConstructor {
interface RangeErrorConstructor extends ErrorConstructor {
new(message?: string): RangeError;
(message?: string): RangeError;
readonly prototype: RangeError;
@ -1008,7 +1008,7 @@ declare var RangeError: RangeErrorConstructor;
interface ReferenceError extends Error {
}
interface ReferenceErrorConstructor {
interface ReferenceErrorConstructor extends ErrorConstructor {
new(message?: string): ReferenceError;
(message?: string): ReferenceError;
readonly prototype: ReferenceError;
@ -1019,7 +1019,7 @@ declare var ReferenceError: ReferenceErrorConstructor;
interface SyntaxError extends Error {
}
interface SyntaxErrorConstructor {
interface SyntaxErrorConstructor extends ErrorConstructor {
new(message?: string): SyntaxError;
(message?: string): SyntaxError;
readonly prototype: SyntaxError;
@ -1030,7 +1030,7 @@ declare var SyntaxError: SyntaxErrorConstructor;
interface TypeError extends Error {
}
interface TypeErrorConstructor {
interface TypeErrorConstructor extends ErrorConstructor {
new(message?: string): TypeError;
(message?: string): TypeError;
readonly prototype: TypeError;
@ -1041,7 +1041,7 @@ declare var TypeError: TypeErrorConstructor;
interface URIError extends Error {
}
interface URIErrorConstructor {
interface URIErrorConstructor extends ErrorConstructor {
new(message?: string): URIError;
(message?: string): URIError;
readonly prototype: URIError;
@ -1114,7 +1114,7 @@ interface ReadonlyArray<T> {
/**
* Returns a section of an array.
* @param start The beginning of the specified portion of the array.
* @param end The end of the specified portion of the array.
* @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.
*/
slice(start?: number, end?: number): T[];
/**
@ -1131,66 +1131,72 @@ interface ReadonlyArray<T> {
lastIndexOf(searchElement: T, fromIndex?: number): number;
/**
* Determines whether all the members of an array satisfy the specified test.
* @param callbackfn A function that accepts up to three arguments. The every method calls the callbackfn function for each element in array1 until the callbackfn returns false, or until the end of the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
* @param callbackfn A function that accepts up to three arguments. The every method calls
* the callbackfn function for each element in the array until the callbackfn returns a value
* which is coercible to the Boolean value false, or until the end of the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
every(callbackfn: (value: T, index: number, array: ReadonlyArray<T>) => unknown, thisArg?: any): boolean;
every(callbackfn: (value: T, index: number, array: readonly T[]) => unknown, thisArg?: any): boolean;
/**
* Determines whether the specified callback function returns true for any element of an array.
* @param callbackfn A function that accepts up to three arguments. The some method calls the callbackfn function for each element in array1 until the callbackfn returns true, or until the end of the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
* @param callbackfn A function that accepts up to three arguments. The some method calls
* the callbackfn function for each element in the array until the callbackfn returns a value
* which is coercible to the Boolean value true, or until the end of the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
some(callbackfn: (value: T, index: number, array: ReadonlyArray<T>) => unknown, thisArg?: any): boolean;
some(callbackfn: (value: T, index: number, array: readonly T[]) => unknown, thisArg?: any): boolean;
/**
* Performs the specified action for each element in an array.
* @param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
*/
forEach(callbackfn: (value: T, index: number, array: ReadonlyArray<T>) => void, thisArg?: any): void;
forEach(callbackfn: (value: T, index: number, array: readonly T[]) => void, thisArg?: any): void;
/**
* Calls a defined callback function on each element of an array, and returns an array that contains the results.
* @param callbackfn A function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
*/
map<U>(callbackfn: (value: T, index: number, array: ReadonlyArray<T>) => U, thisArg?: any): U[];
map<U>(callbackfn: (value: T, index: number, array: readonly T[]) => U, thisArg?: any): U[];
/**
* Returns the elements of an array that meet the condition specified in a callback function.
* @param callbackfn A function that accepts up to three arguments. The filter method calls the callbackfn function one time for each element in the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
*/
filter<S extends T>(callbackfn: (value: T, index: number, array: ReadonlyArray<T>) => value is S, thisArg?: any): S[];
filter<S extends T>(callbackfn: (value: T, index: number, array: readonly T[]) => value is S, thisArg?: any): S[];
/**
* Returns the elements of an array that meet the condition specified in a callback function.
* @param callbackfn A function that accepts up to three arguments. The filter method calls the callbackfn function one time for each element in the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
*/
filter(callbackfn: (value: T, index: number, array: ReadonlyArray<T>) => unknown, thisArg?: any): T[];
filter(callbackfn: (value: T, index: number, array: readonly T[]) => unknown, thisArg?: any): T[];
/**
* Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
* @param callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.
* @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.
*/
reduce(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: ReadonlyArray<T>) => T): T;
reduce(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: ReadonlyArray<T>) => T, initialValue: T): T;
reduce(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: readonly T[]) => T): T;
reduce(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: readonly T[]) => T, initialValue: T): T;
/**
* Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
* @param callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.
* @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.
*/
reduce<U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: ReadonlyArray<T>) => U, initialValue: U): U;
reduce<U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: readonly T[]) => U, initialValue: U): U;
/**
* Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
* @param callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.
* @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.
*/
reduceRight(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: ReadonlyArray<T>) => T): T;
reduceRight(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: ReadonlyArray<T>) => T, initialValue: T): T;
reduceRight(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: readonly T[]) => T): T;
reduceRight(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: readonly T[]) => T, initialValue: T): T;
/**
* Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
* @param callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.
* @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.
*/
reduceRight<U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: ReadonlyArray<T>) => U, initialValue: U): U;
reduceRight<U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: readonly T[]) => U, initialValue: U): U;
readonly [n: number]: T;
}
@ -1250,12 +1256,17 @@ interface Array<T> {
/**
* Returns a section of an array.
* @param start The beginning of the specified portion of the array.
* @param end The end of the specified portion of the array.
* @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.
*/
slice(start?: number, end?: number): T[];
/**
* Sorts an array.
* @param compareFn The name of the function used to determine the order of the elements. If omitted, the elements are sorted in ascending, ASCII character order.
* @param compareFn Function used to determine the order of the elements. It is expected to return
* a negative value if first argument is less than second argument, zero if they're equal and a positive
* value otherwise. If omitted, the elements are sorted in ascending, ASCII character order.
* ```ts
* [11,2,22,1].sort((a, b) => a - b)
* ```
*/
sort(compareFn?: (a: T, b: T) => number): this;
/**
@ -1290,14 +1301,20 @@ interface Array<T> {
lastIndexOf(searchElement: T, fromIndex?: number): number;
/**
* Determines whether all the members of an array satisfy the specified test.
* @param callbackfn A function that accepts up to three arguments. The every method calls the callbackfn function for each element in array1 until the callbackfn returns false, or until the end of the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
* @param callbackfn A function that accepts up to three arguments. The every method calls
* the callbackfn function for each element in the array until the callbackfn returns a value
* which is coercible to the Boolean value false, or until the end of the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
every(callbackfn: (value: T, index: number, array: T[]) => unknown, thisArg?: any): boolean;
/**
* Determines whether the specified callback function returns true for any element of an array.
* @param callbackfn A function that accepts up to three arguments. The some method calls the callbackfn function for each element in array1 until the callbackfn returns true, or until the end of the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
* @param callbackfn A function that accepts up to three arguments. The some method calls
* the callbackfn function for each element in the array until the callbackfn returns a value
* which is coercible to the Boolean value true, or until the end of the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
some(callbackfn: (value: T, index: number, array: T[]) => unknown, thisArg?: any): boolean;
/**
@ -1361,8 +1378,8 @@ interface ArrayConstructor {
(arrayLength?: number): any[];
<T>(arrayLength: number): T[];
<T>(...items: T[]): T[];
isArray(arg: any): arg is Array<any>;
readonly prototype: Array<any>;
isArray(arg: any): arg is any[];
readonly prototype: any[];
}
declare var Array: ArrayConstructor;
@ -1720,12 +1737,12 @@ interface Int8Array {
/**
* Determines whether all the members of an array satisfy the specified test.
* @param callbackfn A function that accepts up to three arguments. The every method calls
* the callbackfn function for each element in array1 until the callbackfn returns false,
* or until the end of the array.
* the callbackfn function for each element in the array until the callbackfn returns a value
* which is coercible to the Boolean value false, or until the end of the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
every(callbackfn: (value: number, index: number, array: Int8Array) => boolean, thisArg?: any): boolean;
every(callbackfn: (value: number, index: number, array: Int8Array) => unknown, thisArg?: any): boolean;
/**
* Returns the this object after filling the section identified by start and end with value
@ -1880,24 +1897,28 @@ interface Int8Array {
/**
* Returns a section of an array.
* @param start The beginning of the specified portion of the array.
* @param end The end of the specified portion of the array.
* @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.
*/
slice(start?: number, end?: number): Int8Array;
/**
* Determines whether the specified callback function returns true for any element of an array.
* @param callbackfn A function that accepts up to three arguments. The some method calls the
* callbackfn function for each element in array1 until the callbackfn returns true, or until
* the end of the array.
* @param callbackfn A function that accepts up to three arguments. The some method calls
* the callbackfn function for each element in the array until the callbackfn returns a value
* which is coercible to the Boolean value true, or until the end of the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
some(callbackfn: (value: number, index: number, array: Int8Array) => boolean, thisArg?: any): boolean;
some(callbackfn: (value: number, index: number, array: Int8Array) => unknown, thisArg?: any): boolean;
/**
* Sorts an array.
* @param compareFn The name of the function used to determine the order of the elements. If
* omitted, the elements are sorted in ascending, ASCII character order.
* @param compareFn Function used to determine the order of the elements. It is expected to return
* a negative value if first argument is less than second argument, zero if they're equal and a positive
* value otherwise. If omitted, the elements are sorted in ascending, ASCII character order.
* ```ts
* [11,2,22,1].sort((a, b) => a - b)
* ```
*/
sort(compareFn?: (a: number, b: number) => number): this;
@ -1907,7 +1928,7 @@ interface Int8Array {
* @param begin The index of the beginning of the array.
* @param end The index of the end of the array.
*/
subarray(begin: number, end?: number): Int8Array;
subarray(begin?: number, end?: number): Int8Array;
/**
* Converts a number to a string by using the current locale.
@ -1919,6 +1940,9 @@ interface Int8Array {
*/
toString(): string;
/** Returns the primitive value of the specified object. */
valueOf(): Int8Array;
[index: number]: number;
}
interface Int8ArrayConstructor {
@ -1995,12 +2019,12 @@ interface Uint8Array {
/**
* Determines whether all the members of an array satisfy the specified test.
* @param callbackfn A function that accepts up to three arguments. The every method calls
* the callbackfn function for each element in array1 until the callbackfn returns false,
* or until the end of the array.
* the callbackfn function for each element in the array until the callbackfn returns a value
* which is coercible to the Boolean value false, or until the end of the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
every(callbackfn: (value: number, index: number, array: Uint8Array) => boolean, thisArg?: any): boolean;
every(callbackfn: (value: number, index: number, array: Uint8Array) => unknown, thisArg?: any): boolean;
/**
* Returns the this object after filling the section identified by start and end with value
@ -2155,24 +2179,28 @@ interface Uint8Array {
/**
* Returns a section of an array.
* @param start The beginning of the specified portion of the array.
* @param end The end of the specified portion of the array.
* @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.
*/
slice(start?: number, end?: number): Uint8Array;
/**
* Determines whether the specified callback function returns true for any element of an array.
* @param callbackfn A function that accepts up to three arguments. The some method calls the
* callbackfn function for each element in array1 until the callbackfn returns true, or until
* the end of the array.
* @param callbackfn A function that accepts up to three arguments. The some method calls
* the callbackfn function for each element in the array until the callbackfn returns a value
* which is coercible to the Boolean value true, or until the end of the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
some(callbackfn: (value: number, index: number, array: Uint8Array) => boolean, thisArg?: any): boolean;
some(callbackfn: (value: number, index: number, array: Uint8Array) => unknown, thisArg?: any): boolean;
/**
* Sorts an array.
* @param compareFn The name of the function used to determine the order of the elements. If
* omitted, the elements are sorted in ascending, ASCII character order.
* @param compareFn Function used to determine the order of the elements. It is expected to return
* a negative value if first argument is less than second argument, zero if they're equal and a positive
* value otherwise. If omitted, the elements are sorted in ascending, ASCII character order.
* ```ts
* [11,2,22,1].sort((a, b) => a - b)
* ```
*/
sort(compareFn?: (a: number, b: number) => number): this;
@ -2182,7 +2210,7 @@ interface Uint8Array {
* @param begin The index of the beginning of the array.
* @param end The index of the end of the array.
*/
subarray(begin: number, end?: number): Uint8Array;
subarray(begin?: number, end?: number): Uint8Array;
/**
* Converts a number to a string by using the current locale.
@ -2194,6 +2222,9 @@ interface Uint8Array {
*/
toString(): string;
/** Returns the primitive value of the specified object. */
valueOf(): Uint8Array;
[index: number]: number;
}
@ -2270,12 +2301,12 @@ interface Uint8ClampedArray {
/**
* Determines whether all the members of an array satisfy the specified test.
* @param callbackfn A function that accepts up to three arguments. The every method calls
* the callbackfn function for each element in array1 until the callbackfn returns false,
* or until the end of the array.
* the callbackfn function for each element in the array until the callbackfn returns a value
* which is coercible to the Boolean value false, or until the end of the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
every(callbackfn: (value: number, index: number, array: Uint8ClampedArray) => boolean, thisArg?: any): boolean;
every(callbackfn: (value: number, index: number, array: Uint8ClampedArray) => unknown, thisArg?: any): boolean;
/**
* Returns the this object after filling the section identified by start and end with value
@ -2430,24 +2461,28 @@ interface Uint8ClampedArray {
/**
* Returns a section of an array.
* @param start The beginning of the specified portion of the array.
* @param end The end of the specified portion of the array.
* @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.
*/
slice(start?: number, end?: number): Uint8ClampedArray;
/**
* Determines whether the specified callback function returns true for any element of an array.
* @param callbackfn A function that accepts up to three arguments. The some method calls the
* callbackfn function for each element in array1 until the callbackfn returns true, or until
* the end of the array.
* @param callbackfn A function that accepts up to three arguments. The some method calls
* the callbackfn function for each element in the array until the callbackfn returns a value
* which is coercible to the Boolean value true, or until the end of the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
some(callbackfn: (value: number, index: number, array: Uint8ClampedArray) => boolean, thisArg?: any): boolean;
some(callbackfn: (value: number, index: number, array: Uint8ClampedArray) => unknown, thisArg?: any): boolean;
/**
* Sorts an array.
* @param compareFn The name of the function used to determine the order of the elements. If
* omitted, the elements are sorted in ascending, ASCII character order.
* @param compareFn Function used to determine the order of the elements. It is expected to return
* a negative value if first argument is less than second argument, zero if they're equal and a positive
* value otherwise. If omitted, the elements are sorted in ascending, ASCII character order.
* ```ts
* [11,2,22,1].sort((a, b) => a - b)
* ```
*/
sort(compareFn?: (a: number, b: number) => number): this;
@ -2457,7 +2492,7 @@ interface Uint8ClampedArray {
* @param begin The index of the beginning of the array.
* @param end The index of the end of the array.
*/
subarray(begin: number, end?: number): Uint8ClampedArray;
subarray(begin?: number, end?: number): Uint8ClampedArray;
/**
* Converts a number to a string by using the current locale.
@ -2469,6 +2504,9 @@ interface Uint8ClampedArray {
*/
toString(): string;
/** Returns the primitive value of the specified object. */
valueOf(): Uint8ClampedArray;
[index: number]: number;
}
@ -2544,12 +2582,12 @@ interface Int16Array {
/**
* Determines whether all the members of an array satisfy the specified test.
* @param callbackfn A function that accepts up to three arguments. The every method calls
* the callbackfn function for each element in array1 until the callbackfn returns false,
* or until the end of the array.
* the callbackfn function for each element in the array until the callbackfn returns a value
* which is coercible to the Boolean value false, or until the end of the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
every(callbackfn: (value: number, index: number, array: Int16Array) => boolean, thisArg?: any): boolean;
every(callbackfn: (value: number, index: number, array: Int16Array) => unknown, thisArg?: any): boolean;
/**
* Returns the this object after filling the section identified by start and end with value
@ -2703,24 +2741,28 @@ interface Int16Array {
/**
* Returns a section of an array.
* @param start The beginning of the specified portion of the array.
* @param end The end of the specified portion of the array.
* @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.
*/
slice(start?: number, end?: number): Int16Array;
/**
* Determines whether the specified callback function returns true for any element of an array.
* @param callbackfn A function that accepts up to three arguments. The some method calls the
* callbackfn function for each element in array1 until the callbackfn returns true, or until
* the end of the array.
* @param callbackfn A function that accepts up to three arguments. The some method calls
* the callbackfn function for each element in the array until the callbackfn returns a value
* which is coercible to the Boolean value true, or until the end of the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
some(callbackfn: (value: number, index: number, array: Int16Array) => boolean, thisArg?: any): boolean;
some(callbackfn: (value: number, index: number, array: Int16Array) => unknown, thisArg?: any): boolean;
/**
* Sorts an array.
* @param compareFn The name of the function used to determine the order of the elements. If
* omitted, the elements are sorted in ascending, ASCII character order.
* @param compareFn Function used to determine the order of the elements. It is expected to return
* a negative value if first argument is less than second argument, zero if they're equal and a positive
* value otherwise. If omitted, the elements are sorted in ascending, ASCII character order.
* ```ts
* [11,2,22,1].sort((a, b) => a - b)
* ```
*/
sort(compareFn?: (a: number, b: number) => number): this;
@ -2730,7 +2772,7 @@ interface Int16Array {
* @param begin The index of the beginning of the array.
* @param end The index of the end of the array.
*/
subarray(begin: number, end?: number): Int16Array;
subarray(begin?: number, end?: number): Int16Array;
/**
* Converts a number to a string by using the current locale.
@ -2742,6 +2784,9 @@ interface Int16Array {
*/
toString(): string;
/** Returns the primitive value of the specified object. */
valueOf(): Int16Array;
[index: number]: number;
}
@ -2819,12 +2864,12 @@ interface Uint16Array {
/**
* Determines whether all the members of an array satisfy the specified test.
* @param callbackfn A function that accepts up to three arguments. The every method calls
* the callbackfn function for each element in array1 until the callbackfn returns false,
* or until the end of the array.
* the callbackfn function for each element in the array until the callbackfn returns a value
* which is coercible to the Boolean value false, or until the end of the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
every(callbackfn: (value: number, index: number, array: Uint16Array) => boolean, thisArg?: any): boolean;
every(callbackfn: (value: number, index: number, array: Uint16Array) => unknown, thisArg?: any): boolean;
/**
* Returns the this object after filling the section identified by start and end with value
@ -2979,24 +3024,28 @@ interface Uint16Array {
/**
* Returns a section of an array.
* @param start The beginning of the specified portion of the array.
* @param end The end of the specified portion of the array.
* @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.
*/
slice(start?: number, end?: number): Uint16Array;
/**
* Determines whether the specified callback function returns true for any element of an array.
* @param callbackfn A function that accepts up to three arguments. The some method calls the
* callbackfn function for each element in array1 until the callbackfn returns true, or until
* the end of the array.
* @param callbackfn A function that accepts up to three arguments. The some method calls
* the callbackfn function for each element in the array until the callbackfn returns a value
* which is coercible to the Boolean value true, or until the end of the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
some(callbackfn: (value: number, index: number, array: Uint16Array) => boolean, thisArg?: any): boolean;
some(callbackfn: (value: number, index: number, array: Uint16Array) => unknown, thisArg?: any): boolean;
/**
* Sorts an array.
* @param compareFn The name of the function used to determine the order of the elements. If
* omitted, the elements are sorted in ascending, ASCII character order.
* @param compareFn Function used to determine the order of the elements. It is expected to return
* a negative value if first argument is less than second argument, zero if they're equal and a positive
* value otherwise. If omitted, the elements are sorted in ascending, ASCII character order.
* ```ts
* [11,2,22,1].sort((a, b) => a - b)
* ```
*/
sort(compareFn?: (a: number, b: number) => number): this;
@ -3006,7 +3055,7 @@ interface Uint16Array {
* @param begin The index of the beginning of the array.
* @param end The index of the end of the array.
*/
subarray(begin: number, end?: number): Uint16Array;
subarray(begin?: number, end?: number): Uint16Array;
/**
* Converts a number to a string by using the current locale.
@ -3018,6 +3067,9 @@ interface Uint16Array {
*/
toString(): string;
/** Returns the primitive value of the specified object. */
valueOf(): Uint16Array;
[index: number]: number;
}
@ -3094,12 +3146,12 @@ interface Int32Array {
/**
* Determines whether all the members of an array satisfy the specified test.
* @param callbackfn A function that accepts up to three arguments. The every method calls
* the callbackfn function for each element in array1 until the callbackfn returns false,
* or until the end of the array.
* the callbackfn function for each element in the array until the callbackfn returns a value
* which is coercible to the Boolean value false, or until the end of the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
every(callbackfn: (value: number, index: number, array: Int32Array) => boolean, thisArg?: any): boolean;
every(callbackfn: (value: number, index: number, array: Int32Array) => unknown, thisArg?: any): boolean;
/**
* Returns the this object after filling the section identified by start and end with value
@ -3254,24 +3306,28 @@ interface Int32Array {
/**
* Returns a section of an array.
* @param start The beginning of the specified portion of the array.
* @param end The end of the specified portion of the array.
* @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.
*/
slice(start?: number, end?: number): Int32Array;
/**
* Determines whether the specified callback function returns true for any element of an array.
* @param callbackfn A function that accepts up to three arguments. The some method calls the
* callbackfn function for each element in array1 until the callbackfn returns true, or until
* the end of the array.
* @param callbackfn A function that accepts up to three arguments. The some method calls
* the callbackfn function for each element in the array until the callbackfn returns a value
* which is coercible to the Boolean value true, or until the end of the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
some(callbackfn: (value: number, index: number, array: Int32Array) => boolean, thisArg?: any): boolean;
some(callbackfn: (value: number, index: number, array: Int32Array) => unknown, thisArg?: any): boolean;
/**
* Sorts an array.
* @param compareFn The name of the function used to determine the order of the elements. If
* omitted, the elements are sorted in ascending, ASCII character order.
* @param compareFn Function used to determine the order of the elements. It is expected to return
* a negative value if first argument is less than second argument, zero if they're equal and a positive
* value otherwise. If omitted, the elements are sorted in ascending, ASCII character order.
* ```ts
* [11,2,22,1].sort((a, b) => a - b)
* ```
*/
sort(compareFn?: (a: number, b: number) => number): this;
@ -3281,7 +3337,7 @@ interface Int32Array {
* @param begin The index of the beginning of the array.
* @param end The index of the end of the array.
*/
subarray(begin: number, end?: number): Int32Array;
subarray(begin?: number, end?: number): Int32Array;
/**
* Converts a number to a string by using the current locale.
@ -3293,6 +3349,9 @@ interface Int32Array {
*/
toString(): string;
/** Returns the primitive value of the specified object. */
valueOf(): Int32Array;
[index: number]: number;
}
@ -3369,12 +3428,12 @@ interface Uint32Array {
/**
* Determines whether all the members of an array satisfy the specified test.
* @param callbackfn A function that accepts up to three arguments. The every method calls
* the callbackfn function for each element in array1 until the callbackfn returns false,
* or until the end of the array.
* the callbackfn function for each element in the array until the callbackfn returns a value
* which is coercible to the Boolean value false, or until the end of the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
every(callbackfn: (value: number, index: number, array: Uint32Array) => boolean, thisArg?: any): boolean;
every(callbackfn: (value: number, index: number, array: Uint32Array) => unknown, thisArg?: any): boolean;
/**
* Returns the this object after filling the section identified by start and end with value
@ -3528,24 +3587,28 @@ interface Uint32Array {
/**
* Returns a section of an array.
* @param start The beginning of the specified portion of the array.
* @param end The end of the specified portion of the array.
* @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.
*/
slice(start?: number, end?: number): Uint32Array;
/**
* Determines whether the specified callback function returns true for any element of an array.
* @param callbackfn A function that accepts up to three arguments. The some method calls the
* callbackfn function for each element in array1 until the callbackfn returns true, or until
* the end of the array.
* @param callbackfn A function that accepts up to three arguments. The some method calls
* the callbackfn function for each element in the array until the callbackfn returns a value
* which is coercible to the Boolean value true, or until the end of the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
some(callbackfn: (value: number, index: number, array: Uint32Array) => boolean, thisArg?: any): boolean;
some(callbackfn: (value: number, index: number, array: Uint32Array) => unknown, thisArg?: any): boolean;
/**
* Sorts an array.
* @param compareFn The name of the function used to determine the order of the elements. If
* omitted, the elements are sorted in ascending, ASCII character order.
* @param compareFn Function used to determine the order of the elements. It is expected to return
* a negative value if first argument is less than second argument, zero if they're equal and a positive
* value otherwise. If omitted, the elements are sorted in ascending, ASCII character order.
* ```ts
* [11,2,22,1].sort((a, b) => a - b)
* ```
*/
sort(compareFn?: (a: number, b: number) => number): this;
@ -3555,7 +3618,7 @@ interface Uint32Array {
* @param begin The index of the beginning of the array.
* @param end The index of the end of the array.
*/
subarray(begin: number, end?: number): Uint32Array;
subarray(begin?: number, end?: number): Uint32Array;
/**
* Converts a number to a string by using the current locale.
@ -3567,6 +3630,9 @@ interface Uint32Array {
*/
toString(): string;
/** Returns the primitive value of the specified object. */
valueOf(): Uint32Array;
[index: number]: number;
}
@ -3643,12 +3709,12 @@ interface Float32Array {
/**
* Determines whether all the members of an array satisfy the specified test.
* @param callbackfn A function that accepts up to three arguments. The every method calls
* the callbackfn function for each element in array1 until the callbackfn returns false,
* or until the end of the array.
* the callbackfn function for each element in the array until the callbackfn returns a value
* which is coercible to the Boolean value false, or until the end of the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
every(callbackfn: (value: number, index: number, array: Float32Array) => boolean, thisArg?: any): boolean;
every(callbackfn: (value: number, index: number, array: Float32Array) => unknown, thisArg?: any): boolean;
/**
* Returns the this object after filling the section identified by start and end with value
@ -3803,24 +3869,28 @@ interface Float32Array {
/**
* Returns a section of an array.
* @param start The beginning of the specified portion of the array.
* @param end The end of the specified portion of the array.
* @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.
*/
slice(start?: number, end?: number): Float32Array;
/**
* Determines whether the specified callback function returns true for any element of an array.
* @param callbackfn A function that accepts up to three arguments. The some method calls the
* callbackfn function for each element in array1 until the callbackfn returns true, or until
* the end of the array.
* @param callbackfn A function that accepts up to three arguments. The some method calls
* the callbackfn function for each element in the array until the callbackfn returns a value
* which is coercible to the Boolean value true, or until the end of the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
some(callbackfn: (value: number, index: number, array: Float32Array) => boolean, thisArg?: any): boolean;
some(callbackfn: (value: number, index: number, array: Float32Array) => unknown, thisArg?: any): boolean;
/**
* Sorts an array.
* @param compareFn The name of the function used to determine the order of the elements. If
* omitted, the elements are sorted in ascending, ASCII character order.
* @param compareFn Function used to determine the order of the elements. It is expected to return
* a negative value if first argument is less than second argument, zero if they're equal and a positive
* value otherwise. If omitted, the elements are sorted in ascending, ASCII character order.
* ```ts
* [11,2,22,1].sort((a, b) => a - b)
* ```
*/
sort(compareFn?: (a: number, b: number) => number): this;
@ -3830,7 +3900,7 @@ interface Float32Array {
* @param begin The index of the beginning of the array.
* @param end The index of the end of the array.
*/
subarray(begin: number, end?: number): Float32Array;
subarray(begin?: number, end?: number): Float32Array;
/**
* Converts a number to a string by using the current locale.
@ -3842,6 +3912,9 @@ interface Float32Array {
*/
toString(): string;
/** Returns the primitive value of the specified object. */
valueOf(): Float32Array;
[index: number]: number;
}
@ -3919,12 +3992,12 @@ interface Float64Array {
/**
* Determines whether all the members of an array satisfy the specified test.
* @param callbackfn A function that accepts up to three arguments. The every method calls
* the callbackfn function for each element in array1 until the callbackfn returns false,
* or until the end of the array.
* the callbackfn function for each element in the array until the callbackfn returns a value
* which is coercible to the Boolean value false, or until the end of the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
every(callbackfn: (value: number, index: number, array: Float64Array) => boolean, thisArg?: any): boolean;
every(callbackfn: (value: number, index: number, array: Float64Array) => unknown, thisArg?: any): boolean;
/**
* Returns the this object after filling the section identified by start and end with value
@ -4079,45 +4152,43 @@ interface Float64Array {
/**
* Returns a section of an array.
* @param start The beginning of the specified portion of the array.
* @param end The end of the specified portion of the array.
* @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.
*/
slice(start?: number, end?: number): Float64Array;
/**
* Determines whether the specified callback function returns true for any element of an array.
* @param callbackfn A function that accepts up to three arguments. The some method calls the
* callbackfn function for each element in array1 until the callbackfn returns true, or until
* the end of the array.
* @param callbackfn A function that accepts up to three arguments. The some method calls
* the callbackfn function for each element in the array until the callbackfn returns a value
* which is coercible to the Boolean value true, or until the end of the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
some(callbackfn: (value: number, index: number, array: Float64Array) => boolean, thisArg?: any): boolean;
some(callbackfn: (value: number, index: number, array: Float64Array) => unknown, thisArg?: any): boolean;
/**
* Sorts an array.
* @param compareFn The name of the function used to determine the order of the elements. If
* omitted, the elements are sorted in ascending, ASCII character order.
* @param compareFn Function used to determine the order of the elements. It is expected to return
* a negative value if first argument is less than second argument, zero if they're equal and a positive
* value otherwise. If omitted, the elements are sorted in ascending, ASCII character order.
* ```ts
* [11,2,22,1].sort((a, b) => a - b)
* ```
*/
sort(compareFn?: (a: number, b: number) => number): this;
/**
* Gets a new Float64Array view of the ArrayBuffer store for this array, referencing the elements
* at begin, inclusive, up to end, exclusive.
* @param begin The index of the beginning of the array.
* @param end The index of the end of the array.
*/
subarray(begin: number, end?: number): Float64Array;
subarray(begin?: number, end?: number): Float64Array;
/**
* Converts a number to a string by using the current locale.
*/
toLocaleString(): string;
/**
* Returns a string representation of an array.
*/
toString(): string;
/** Returns the primitive value of the specified object. */
valueOf(): Float64Array;
[index: number]: number;
}

View File

@ -18,6 +18,7 @@ and limitations under the License.
/// <reference no-default-lib="true"/>
/// <reference lib="es2019" />
/// <reference lib="esnext.bigint" />
/// <reference lib="es2020" />
/// <reference lib="esnext.intl" />
/// <reference lib="esnext.string" />
/// <reference lib="esnext.promise" />

43
node_modules/typescript/lib/lib.esnext.promise.d.ts generated vendored Normal file
View File

@ -0,0 +1,43 @@
/*! *****************************************************************************
Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of the
License at http://www.apache.org/licenses/LICENSE-2.0
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
MERCHANTABLITY OR NON-INFRINGEMENT.
See the Apache Version 2.0 License for specific language governing permissions
and limitations under the License.
***************************************************************************** */
/// <reference no-default-lib="true"/>
interface AggregateError extends Error {
errors: any[]
}
interface AggregateErrorConstructor {
new(errors: Iterable<any>, message?: string): AggregateError;
(errors: Iterable<any>, message?: string): AggregateError;
readonly prototype: AggregateError;
}
declare var AggregateError: AggregateErrorConstructor;
/**
* Represents the completion of an asynchronous operation
*/
interface PromiseConstructor {
/**
* The any function returns a promise that is fulfilled by the first given promise to be fulfilled, or rejected with an AggregateError containing an array of rejection reasons if all of the given promises are rejected. It resolves all elements of the passed iterable to promises as it runs this algorithm.
* @param values An array or iterable of Promises.
* @returns A new Promise.
*/
any<T>(values: (T | PromiseLike<T>)[] | Iterable<T | PromiseLike<T>>): Promise<T>
}

35
node_modules/typescript/lib/lib.esnext.string.d.ts generated vendored Normal file
View File

@ -0,0 +1,35 @@
/*! *****************************************************************************
Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of the
License at http://www.apache.org/licenses/LICENSE-2.0
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
MERCHANTABLITY OR NON-INFRINGEMENT.
See the Apache Version 2.0 License for specific language governing permissions
and limitations under the License.
***************************************************************************** */
/// <reference no-default-lib="true"/>
interface String {
/**
* Replace all instances of a substring in a string, using a regular expression or search string.
* @param searchValue A string to search for.
* @param replaceValue A string containing the text to replace for every successful match of searchValue in this string.
*/
replaceAll(searchValue: string | RegExp, replaceValue: string): string;
/**
* Replace all instances of a substring in a string, using a regular expression or search string.
* @param searchValue A string to search for.
* @param replacer A function that returns the replacement text.
*/
replaceAll(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
}

View File

@ -239,6 +239,15 @@ interface IDBVersionChangeEventInit extends EventInit {
oldVersion?: number;
}
interface ImageBitmapOptions {
colorSpaceConversion?: ColorSpaceConversion;
imageOrientation?: ImageOrientation;
premultiplyAlpha?: PremultiplyAlpha;
resizeHeight?: number;
resizeQuality?: ResizeQuality;
resizeWidth?: number;
}
interface ImageBitmapRenderingContextSettings {
alpha?: boolean;
}
@ -370,7 +379,7 @@ interface PushPermissionDescriptor extends PermissionDescriptor {
userVisibleOnly?: boolean;
}
interface PushSubscriptionChangeInit extends ExtendableEventInit {
interface PushSubscriptionChangeEventInit extends ExtendableEventInit {
newSubscription?: PushSubscription;
oldSubscription?: PushSubscription;
}
@ -391,6 +400,16 @@ interface QueuingStrategy<T = any> {
size?: QueuingStrategySizeCallback<T>;
}
interface ReadableStreamReadDoneResult<T> {
done: true;
value?: T;
}
interface ReadableStreamReadValueResult<T> {
done: false;
value: T;
}
interface RegistrationOptions {
scope?: string;
type?: WorkerType;
@ -642,7 +661,10 @@ interface AnimationFrameProvider {
interface Blob {
readonly size: number;
readonly type: string;
arrayBuffer(): Promise<ArrayBuffer>;
slice(start?: number, end?: number, contentType?: string): Blob;
stream(): ReadableStream;
text(): Promise<string>;
}
declare var Blob: {
@ -723,7 +745,7 @@ interface CacheStorage {
delete(cacheName: string): Promise<boolean>;
has(cacheName: string): Promise<boolean>;
keys(): Promise<string[]>;
match(request: RequestInfo, options?: CacheQueryOptions): Promise<Response | undefined>;
match(request: RequestInfo, options?: MultiCacheQueryOptions): Promise<Response | undefined>;
open(cacheName: string): Promise<Cache>;
}
@ -761,7 +783,7 @@ interface CanvasFillStrokeStyles {
fillStyle: string | CanvasGradient | CanvasPattern;
strokeStyle: string | CanvasGradient | CanvasPattern;
createLinearGradient(x0: number, y0: number, x1: number, y1: number): CanvasGradient;
createPattern(image: CanvasImageSource, repetition: string): CanvasPattern | null;
createPattern(image: CanvasImageSource, repetition: string | null): CanvasPattern | null;
createRadialGradient(x0: number, y0: number, r0: number, x1: number, y1: number, r1: number): CanvasGradient;
}
@ -903,11 +925,18 @@ declare var Clients: {
/** A CloseEvent is sent to clients using WebSockets when the connection is closed. This is delivered to the listener indicated by the WebSocket object's onclose attribute. */
interface CloseEvent extends Event {
/**
* Returns the WebSocket connection close code provided by the server.
*/
readonly code: number;
/**
* Returns the WebSocket connection close reason provided by the server.
*/
readonly reason: string;
/**
* Returns true if the connection closed cleanly; false otherwise.
*/
readonly wasClean: boolean;
/** @deprecated */
initCloseEvent(typeArg: string, canBubbleArg: boolean, cancelableArg: boolean, wasCleanArg: boolean, codeArg: number, reasonArg: string): void;
}
declare var CloseEvent: {
@ -924,40 +953,6 @@ interface ConcatParams extends Algorithm {
publicInfo?: Uint8Array;
}
/** Provides access to the browser's debugging console (e.g. the Web Console in Firefox). The specifics of how it works varies from browser to browser, but there is a de facto set of features that are typically provided. */
interface Console {
memory: any;
assert(condition?: boolean, message?: string, ...data: any[]): void;
clear(): void;
count(label?: string): void;
debug(message?: any, ...optionalParams: any[]): void;
dir(value?: any, ...optionalParams: any[]): void;
dirxml(value: any): void;
error(message?: any, ...optionalParams: any[]): void;
exception(message?: string, ...optionalParams: any[]): void;
group(groupTitle?: string, ...optionalParams: any[]): void;
groupCollapsed(groupTitle?: string, ...optionalParams: any[]): void;
groupEnd(): void;
info(message?: any, ...optionalParams: any[]): void;
log(message?: any, ...optionalParams: any[]): void;
markTimeline(label?: string): void;
profile(reportName?: string): void;
profileEnd(reportName?: string): void;
table(...tabularData: any[]): void;
time(label?: string): void;
timeEnd(label?: string): void;
timeStamp(label?: string): void;
timeline(label?: string): void;
timelineEnd(label?: string): void;
trace(message?: any, ...optionalParams: any[]): void;
warn(message?: any, ...optionalParams: any[]): void;
}
declare var Console: {
prototype: Console;
new(): Console;
};
/** This Streams API interface provides a built-in byte length queuing strategy that can be used when constructing streams. */
interface CountQueuingStrategy extends QueuingStrategy {
highWaterMark: number;
@ -1264,12 +1259,24 @@ declare var DOMStringList: {
interface DedicatedWorkerGlobalScopeEventMap extends WorkerGlobalScopeEventMap {
"message": MessageEvent;
"messageerror": MessageEvent;
}
/** (the Worker global scope) is accessible through the self keyword. Some additional global functions, namespaces objects, and constructors, not typically associated with the worker global scope, but available on it, are listed in the JavaScript Reference. See also: Functions available to workers. */
interface DedicatedWorkerGlobalScope extends WorkerGlobalScope, AnimationFrameProvider {
/**
* Returns dedicatedWorkerGlobal's name, i.e. the value given to the Worker constructor. Primarily useful for debugging.
*/
readonly name: string;
onmessage: ((this: DedicatedWorkerGlobalScope, ev: MessageEvent) => any) | null;
onmessageerror: ((this: DedicatedWorkerGlobalScope, ev: MessageEvent) => any) | null;
/**
* Aborts dedicatedWorkerGlobal.
*/
close(): void;
/**
* Clones message and transmits it to the Worker object associated with dedicatedWorkerGlobal. transfer can be passed as a list of objects that are to be transferred rather than cloned.
*/
postMessage(message: any, transfer: Transferable[]): void;
postMessage(message: any, options?: PostMessageOptions): void;
addEventListener<K extends keyof DedicatedWorkerGlobalScopeEventMap>(type: K, listener: (this: DedicatedWorkerGlobalScope, ev: DedicatedWorkerGlobalScopeEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@ -1636,7 +1643,7 @@ interface GenericTransformStream {
*/
readonly readable: ReadableStream;
/**
* Returns a writable stream which accepts BufferSource chunks and runs them through encoding's decoder before making them available to readable.
* Returns a writable stream which accepts [AllowShared] BufferSource chunks and runs them through encoding's decoder before making them available to readable.
*
* Typically this will be used via the pipeThrough() method on a ReadableStream source.
*
@ -2178,15 +2185,6 @@ declare var ImageBitmap: {
new(): ImageBitmap;
};
interface ImageBitmapOptions {
colorSpaceConversion?: "none" | "default";
imageOrientation?: "none" | "flipY";
premultiplyAlpha?: "none" | "premultiply" | "default";
resizeHeight?: number;
resizeQuality?: "pixelated" | "low" | "medium" | "high";
resizeWidth?: number;
}
interface ImageBitmapRenderingContext {
/**
* Returns the canvas element that the context is bound to.
@ -2222,7 +2220,7 @@ interface ImageData {
declare var ImageData: {
prototype: ImageData;
new(width: number, height: number): ImageData;
new(array: Uint8ClampedArray, width: number, height: number): ImageData;
new(array: Uint8ClampedArray, width: number, height?: number): ImageData;
};
/** This Channel Messaging API interface allows us to create a new message channel and send data through it via its two MessagePort properties. */
@ -2318,10 +2316,6 @@ declare var NavigationPreloadManager: {
new(): NavigationPreloadManager;
};
interface NavigatorBeacon {
sendBeacon(url: string, data?: Blob | Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | FormData | string | null): boolean;
}
interface NavigatorConcurrentHardware {
readonly hardwareConcurrency: number;
}
@ -2335,6 +2329,11 @@ interface NavigatorID {
readonly userAgent: string;
}
interface NavigatorLanguage {
readonly language: string;
readonly languages: ReadonlyArray<string>;
}
interface NavigatorOnLine {
readonly onLine: boolean;
}
@ -2472,7 +2471,7 @@ declare var OffscreenCanvas: {
new(width: number, height: number): OffscreenCanvas;
};
interface OffscreenCanvasRenderingContext2D extends CanvasState, CanvasTransform, CanvasCompositing, CanvasImageSmoothing, CanvasFillStrokeStyles, CanvasShadowStyles, CanvasFilters, CanvasRect, CanvasDrawPath, CanvasText, CanvasDrawImage, CanvasImageData, CanvasPathDrawingStyles, CanvasTextDrawingStyles, CanvasPath {
interface OffscreenCanvasRenderingContext2D extends CanvasCompositing, CanvasDrawImage, CanvasDrawPath, CanvasFillStrokeStyles, CanvasFilters, CanvasImageData, CanvasImageSmoothing, CanvasPath, CanvasPathDrawingStyles, CanvasRect, CanvasShadowStyles, CanvasState, CanvasText, CanvasTextDrawingStyles, CanvasTransform {
readonly canvas: OffscreenCanvas;
commit(): void;
}
@ -2715,7 +2714,7 @@ interface PushSubscriptionChangeEvent extends ExtendableEvent {
declare var PushSubscriptionChangeEvent: {
prototype: PushSubscriptionChangeEvent;
new(type: string, eventInitDict?: PushSubscriptionChangeInit): PushSubscriptionChangeEvent;
new(type: string, eventInitDict?: PushSubscriptionChangeEventInit): PushSubscriptionChangeEvent;
};
interface PushSubscriptionOptions {
@ -2780,11 +2779,6 @@ interface ReadableStreamDefaultReader<R = any> {
releaseLock(): void;
}
interface ReadableStreamReadResult<T> {
done: boolean;
value: T;
}
interface ReadableStreamReader<R = any> {
cancel(): Promise<void>;
read(): Promise<ReadableStreamReadResult<R>>;
@ -2963,6 +2957,7 @@ interface ServiceWorkerGlobalScope extends WorkerGlobalScope {
onpushsubscriptionchange: ((this: ServiceWorkerGlobalScope, ev: PushSubscriptionChangeEvent) => any) | null;
onsync: ((this: ServiceWorkerGlobalScope, ev: SyncEvent) => any) | null;
readonly registration: ServiceWorkerRegistration;
readonly serviceWorker: ServiceWorker;
skipWaiting(): Promise<void>;
addEventListener<K extends keyof ServiceWorkerGlobalScopeEventMap>(type: K, listener: (this: ServiceWorkerGlobalScope, ev: ServiceWorkerGlobalScopeEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@ -3005,6 +3000,47 @@ declare var ServiceWorkerRegistration: {
new(): ServiceWorkerRegistration;
};
interface SharedWorker extends EventTarget, AbstractWorker {
/**
* Returns sharedWorker's MessagePort object which can be used to communicate with the global environment.
*/
readonly port: MessagePort;
addEventListener<K extends keyof AbstractWorkerEventMap>(type: K, listener: (this: SharedWorker, ev: AbstractWorkerEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
removeEventListener<K extends keyof AbstractWorkerEventMap>(type: K, listener: (this: SharedWorker, ev: AbstractWorkerEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
}
declare var SharedWorker: {
prototype: SharedWorker;
new(scriptURL: string, options?: string | WorkerOptions): SharedWorker;
};
interface SharedWorkerGlobalScopeEventMap extends WorkerGlobalScopeEventMap {
"connect": MessageEvent;
}
interface SharedWorkerGlobalScope extends WorkerGlobalScope {
/**
* Returns sharedWorkerGlobal's name, i.e. the value given to the SharedWorker constructor. Multiple SharedWorker objects can correspond to the same shared worker (and SharedWorkerGlobalScope), by reusing the same name.
*/
readonly name: string;
onconnect: ((this: SharedWorkerGlobalScope, ev: MessageEvent) => any) | null;
/**
* Aborts sharedWorkerGlobal.
*/
close(): void;
addEventListener<K extends keyof SharedWorkerGlobalScopeEventMap>(type: K, listener: (this: SharedWorkerGlobalScope, ev: SharedWorkerGlobalScopeEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
removeEventListener<K extends keyof SharedWorkerGlobalScopeEventMap>(type: K, listener: (this: SharedWorkerGlobalScope, ev: SharedWorkerGlobalScopeEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
}
declare var SharedWorkerGlobalScope: {
prototype: SharedWorkerGlobalScope;
new(): SharedWorkerGlobalScope;
};
interface StorageManager {
estimate(): Promise<StorageEstimate>;
persisted(): Promise<boolean>;
@ -3017,24 +3053,24 @@ declare var StorageManager: {
/** This Web Crypto API interface provides a number of low-level cryptographic functions. It is accessed via the Crypto.subtle properties available in a window context (via Window.crypto). */
interface SubtleCrypto {
decrypt(algorithm: string | RsaOaepParams | AesCtrParams | AesCbcParams | AesCmacParams | AesGcmParams | AesCfbParams, key: CryptoKey, data: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer): PromiseLike<ArrayBuffer>;
deriveBits(algorithm: string | EcdhKeyDeriveParams | DhKeyDeriveParams | ConcatParams | HkdfCtrParams | Pbkdf2Params, baseKey: CryptoKey, length: number): PromiseLike<ArrayBuffer>;
deriveKey(algorithm: string | EcdhKeyDeriveParams | DhKeyDeriveParams | ConcatParams | HkdfCtrParams | Pbkdf2Params, baseKey: CryptoKey, derivedKeyType: string | AesDerivedKeyParams | HmacImportParams | ConcatParams | HkdfCtrParams | Pbkdf2Params, extractable: boolean, keyUsages: string[]): PromiseLike<CryptoKey>;
digest(algorithm: string | Algorithm, data: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer): PromiseLike<ArrayBuffer>;
encrypt(algorithm: string | RsaOaepParams | AesCtrParams | AesCbcParams | AesCmacParams | AesGcmParams | AesCfbParams, key: CryptoKey, data: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer): PromiseLike<ArrayBuffer>;
decrypt(algorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesCmacParams | AesGcmParams | AesCfbParams, key: CryptoKey, data: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer): PromiseLike<ArrayBuffer>;
deriveBits(algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | DhKeyDeriveParams | ConcatParams | HkdfCtrParams | Pbkdf2Params, baseKey: CryptoKey, length: number): PromiseLike<ArrayBuffer>;
deriveKey(algorithm: AlgorithmIdentifier | EcdhKeyDeriveParams | DhKeyDeriveParams | ConcatParams | HkdfCtrParams | Pbkdf2Params, baseKey: CryptoKey, derivedKeyType: string | AesDerivedKeyParams | HmacImportParams | ConcatParams | HkdfCtrParams | Pbkdf2Params, extractable: boolean, keyUsages: KeyUsage[]): PromiseLike<CryptoKey>;
digest(algorithm: AlgorithmIdentifier, data: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer): PromiseLike<ArrayBuffer>;
encrypt(algorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesCmacParams | AesGcmParams | AesCfbParams, key: CryptoKey, data: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer): PromiseLike<ArrayBuffer>;
exportKey(format: "jwk", key: CryptoKey): PromiseLike<JsonWebKey>;
exportKey(format: "raw" | "pkcs8" | "spki", key: CryptoKey): PromiseLike<ArrayBuffer>;
exportKey(format: string, key: CryptoKey): PromiseLike<JsonWebKey | ArrayBuffer>;
generateKey(algorithm: string, extractable: boolean, keyUsages: string[]): PromiseLike<CryptoKeyPair | CryptoKey>;
generateKey(algorithm: RsaHashedKeyGenParams | EcKeyGenParams | DhKeyGenParams, extractable: boolean, keyUsages: string[]): PromiseLike<CryptoKeyPair>;
generateKey(algorithm: AesKeyGenParams | HmacKeyGenParams | Pbkdf2Params, extractable: boolean, keyUsages: string[]): PromiseLike<CryptoKey>;
importKey(format: "jwk", keyData: JsonWebKey, algorithm: string | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | DhImportKeyParams | AesKeyAlgorithm, extractable: boolean, keyUsages: string[]): PromiseLike<CryptoKey>;
importKey(format: "raw" | "pkcs8" | "spki", keyData: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer, algorithm: string | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | DhImportKeyParams | AesKeyAlgorithm, extractable: boolean, keyUsages: string[]): PromiseLike<CryptoKey>;
importKey(format: string, keyData: JsonWebKey | Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer, algorithm: string | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | DhImportKeyParams | AesKeyAlgorithm, extractable: boolean, keyUsages: string[]): PromiseLike<CryptoKey>;
sign(algorithm: string | RsaPssParams | EcdsaParams | AesCmacParams, key: CryptoKey, data: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer): PromiseLike<ArrayBuffer>;
unwrapKey(format: string, wrappedKey: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer, unwrappingKey: CryptoKey, unwrapAlgorithm: string | Algorithm, unwrappedKeyAlgorithm: string | Algorithm, extractable: boolean, keyUsages: string[]): PromiseLike<CryptoKey>;
verify(algorithm: string | RsaPssParams | EcdsaParams | AesCmacParams, key: CryptoKey, signature: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer, data: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer): PromiseLike<boolean>;
wrapKey(format: string, key: CryptoKey, wrappingKey: CryptoKey, wrapAlgorithm: string | Algorithm): PromiseLike<ArrayBuffer>;
generateKey(algorithm: AlgorithmIdentifier, extractable: boolean, keyUsages: KeyUsage[]): PromiseLike<CryptoKeyPair | CryptoKey>;
generateKey(algorithm: RsaHashedKeyGenParams | EcKeyGenParams | DhKeyGenParams, extractable: boolean, keyUsages: KeyUsage[]): PromiseLike<CryptoKeyPair>;
generateKey(algorithm: AesKeyGenParams | HmacKeyGenParams | Pbkdf2Params, extractable: boolean, keyUsages: KeyUsage[]): PromiseLike<CryptoKey>;
importKey(format: "jwk", keyData: JsonWebKey, algorithm: AlgorithmIdentifier | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | DhImportKeyParams | AesKeyAlgorithm, extractable: boolean, keyUsages: KeyUsage[]): PromiseLike<CryptoKey>;
importKey(format: "raw" | "pkcs8" | "spki", keyData: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer, algorithm: AlgorithmIdentifier | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | DhImportKeyParams | AesKeyAlgorithm, extractable: boolean, keyUsages: KeyUsage[]): PromiseLike<CryptoKey>;
importKey(format: string, keyData: JsonWebKey | Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer, algorithm: AlgorithmIdentifier | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | DhImportKeyParams | AesKeyAlgorithm, extractable: boolean, keyUsages: KeyUsage[]): PromiseLike<CryptoKey>;
sign(algorithm: AlgorithmIdentifier | RsaPssParams | EcdsaParams | AesCmacParams, key: CryptoKey, data: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer): PromiseLike<ArrayBuffer>;
unwrapKey(format: "raw" | "pkcs8" | "spki" | "jwk" | string, wrappedKey: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer, unwrappingKey: CryptoKey, unwrapAlgorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesCmacParams | AesGcmParams | AesCfbParams, unwrappedKeyAlgorithm: AlgorithmIdentifier | RsaHashedImportParams | EcKeyImportParams | HmacImportParams | DhImportKeyParams | AesKeyAlgorithm, extractable: boolean, keyUsages: KeyUsage[]): PromiseLike<CryptoKey>;
verify(algorithm: AlgorithmIdentifier | RsaPssParams | EcdsaParams | AesCmacParams, key: CryptoKey, signature: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer, data: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer): PromiseLike<boolean>;
wrapKey(format: "raw" | "pkcs8" | "spki" | "jwk" | string, key: CryptoKey, wrappingKey: CryptoKey, wrapAlgorithm: AlgorithmIdentifier | RsaOaepParams | AesCtrParams | AesCbcParams | AesCmacParams | AesGcmParams | AesCfbParams): PromiseLike<ArrayBuffer>;
}
declare var SubtleCrypto: {
@ -3102,7 +3138,9 @@ interface TextDecoderCommon {
readonly ignoreBOM: boolean;
}
interface TextDecoderStream extends TextDecoderCommon, GenericTransformStream {
interface TextDecoderStream extends GenericTransformStream, TextDecoderCommon {
readonly readable: ReadableStream<string>;
readonly writable: WritableStream<BufferSource>;
}
declare var TextDecoderStream: {
@ -3134,7 +3172,9 @@ interface TextEncoderCommon {
readonly encoding: string;
}
interface TextEncoderStream extends TextEncoderCommon, GenericTransformStream {
interface TextEncoderStream extends GenericTransformStream, TextEncoderCommon {
readonly readable: ReadableStream<Uint8Array>;
readonly writable: WritableStream<string>;
}
declare var TextEncoderStream: {
@ -3222,6 +3262,7 @@ interface URL {
host: string;
hostname: string;
href: string;
toString(): string;
readonly origin: string;
password: string;
pathname: string;
@ -3266,12 +3307,17 @@ interface URLSearchParams {
*/
set(name: string, value: string): void;
sort(): void;
/**
* Returns a string containing a query string suitable for use in a URL. Does not include the question mark.
*/
toString(): string;
forEach(callbackfn: (value: string, key: string, parent: URLSearchParams) => void, thisArg?: any): void;
}
declare var URLSearchParams: {
prototype: URLSearchParams;
new(init?: string[][] | Record<string, string> | string | URLSearchParams): URLSearchParams;
toString(): string;
};
interface WEBGL_color_buffer_float {
@ -3385,7 +3431,7 @@ interface WEBGL_lose_context {
restoreContext(): void;
}
interface WebGL2RenderingContext extends WebGLRenderingContextBase, WebGL2RenderingContextBase, WebGL2RenderingContextOverloads {
interface WebGL2RenderingContext extends WebGL2RenderingContextBase, WebGL2RenderingContextOverloads, WebGLRenderingContextBase {
}
declare var WebGL2RenderingContext: {
@ -5277,17 +5323,45 @@ interface WebSocketEventMap {
/** Provides the API for creating and managing a WebSocket connection to a server, as well as for sending and receiving data on the connection. */
interface WebSocket extends EventTarget {
/**
* Returns a string that indicates how binary data from the WebSocket object is exposed to scripts:
*
* Can be set, to change how binary data is returned. The default is "blob".
*/
binaryType: BinaryType;
/**
* Returns the number of bytes of application data (UTF-8 text and binary data) that have been queued using send() but not yet been transmitted to the network.
*
* If the WebSocket connection is closed, this attribute's value will only increase with each call to the send() method. (The number does not reset to zero once the connection closes.)
*/
readonly bufferedAmount: number;
/**
* Returns the extensions selected by the server, if any.
*/
readonly extensions: string;
onclose: ((this: WebSocket, ev: CloseEvent) => any) | null;
onerror: ((this: WebSocket, ev: Event) => any) | null;
onmessage: ((this: WebSocket, ev: MessageEvent) => any) | null;
onopen: ((this: WebSocket, ev: Event) => any) | null;
/**
* Returns the subprotocol selected by the server, if any. It can be used in conjunction with the array form of the constructor's second argument to perform subprotocol negotiation.
*/
readonly protocol: string;
/**
* Returns the state of the WebSocket object's connection. It can have the values described below.
*/
readonly readyState: number;
/**
* Returns the URL that was used to establish the WebSocket connection.
*/
readonly url: string;
/**
* Closes the WebSocket connection, optionally using code as the the WebSocket connection close code and reason as the the WebSocket connection close reason.
*/
close(code?: number, reason?: string): void;
/**
* Transmits data using the WebSocket connection. data can be a string, a Blob, an ArrayBuffer, or an ArrayBufferView.
*/
send(data: string | ArrayBufferLike | Blob | ArrayBufferView): void;
readonly CLOSED: number;
readonly CLOSING: number;
@ -5308,11 +5382,6 @@ declare var WebSocket: {
readonly OPEN: number;
};
interface WindowBase64 {
atob(encodedString: string): string;
btoa(rawString: string): string;
}
/** This ServiceWorker API interface represents the scope of a service worker client that is a document in a browser context, controlled by an active worker. The service worker client independently selects and uses a service worker for its own loading and sub-resources. */
interface WindowClient extends Client {
readonly ancestorOrigins: ReadonlyArray<string>;
@ -5327,37 +5396,42 @@ declare var WindowClient: {
new(): WindowClient;
};
interface WindowConsole {
readonly console: Console;
}
interface WindowOrWorkerGlobalScope {
readonly caches: CacheStorage;
readonly crypto: Crypto;
readonly indexedDB: IDBFactory;
readonly isSecureContext: boolean;
readonly origin: string;
readonly performance: Performance;
atob(data: string): string;
btoa(data: string): string;
clearInterval(handle?: number): void;
clearTimeout(handle?: number): void;
createImageBitmap(image: ImageBitmapSource): Promise<ImageBitmap>;
createImageBitmap(image: ImageBitmapSource, sx: number, sy: number, sw: number, sh: number): Promise<ImageBitmap>;
createImageBitmap(image: ImageBitmapSource, options?: ImageBitmapOptions): Promise<ImageBitmap>;
createImageBitmap(image: ImageBitmapSource, sx: number, sy: number, sw: number, sh: number, options?: ImageBitmapOptions): Promise<ImageBitmap>;
fetch(input: RequestInfo, init?: RequestInit): Promise<Response>;
queueMicrotask(callback: Function): void;
queueMicrotask(callback: VoidFunction): void;
setInterval(handler: TimerHandler, timeout?: number, ...arguments: any[]): number;
setTimeout(handler: TimerHandler, timeout?: number, ...arguments: any[]): number;
}
interface WorkerEventMap extends AbstractWorkerEventMap {
"message": MessageEvent;
"messageerror": MessageEvent;
}
/** This Web Workers API interface represents a background task that can be easily created and can send messages back to its creator. Creating a worker is as simple as calling the Worker() constructor and specifying a script to be run in the worker thread. */
interface Worker extends EventTarget, AbstractWorker {
onmessage: ((this: Worker, ev: MessageEvent) => any) | null;
onmessageerror: ((this: Worker, ev: MessageEvent) => any) | null;
/**
* Clones message and transmits it to worker's global environment. transfer can be passed as a list of objects that are to be transferred rather than cloned.
*/
postMessage(message: any, transfer: Transferable[]): void;
postMessage(message: any, options?: PostMessageOptions): void;
/**
* Aborts worker's associated global environment.
*/
terminate(): void;
addEventListener<K extends keyof WorkerEventMap>(type: K, listener: (this: Worker, ev: WorkerEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
@ -5372,17 +5446,34 @@ declare var Worker: {
interface WorkerGlobalScopeEventMap {
"error": ErrorEvent;
"languagechange": Event;
"offline": Event;
"online": Event;
"rejectionhandled": PromiseRejectionEvent;
"unhandledrejection": PromiseRejectionEvent;
}
/** This Web Workers API interface is an interface representing the scope of any worker. Workers have no browsing context; this scope contains the information usually conveyed by Window objects — in this case event handlers, the console or the associated WorkerNavigator object. Each WorkerGlobalScope has its own event loop. */
interface WorkerGlobalScope extends EventTarget, WorkerUtils, WindowConsole, WindowOrWorkerGlobalScope {
readonly caches: CacheStorage;
readonly isSecureContext: boolean;
interface WorkerGlobalScope extends EventTarget, WindowOrWorkerGlobalScope {
/**
* Returns workerGlobal's WorkerLocation object.
*/
readonly location: WorkerLocation;
readonly navigator: WorkerNavigator;
onerror: ((this: WorkerGlobalScope, ev: ErrorEvent) => any) | null;
readonly performance: Performance;
onlanguagechange: ((this: WorkerGlobalScope, ev: Event) => any) | null;
onoffline: ((this: WorkerGlobalScope, ev: Event) => any) | null;
ononline: ((this: WorkerGlobalScope, ev: Event) => any) | null;
onrejectionhandled: ((this: WorkerGlobalScope, ev: PromiseRejectionEvent) => any) | null;
onunhandledrejection: ((this: WorkerGlobalScope, ev: PromiseRejectionEvent) => any) | null;
/**
* Returns workerGlobal.
*/
readonly self: WorkerGlobalScope & typeof globalThis;
msWriteProfilerMark(profilerMarkName: string): void;
/**
* Fetches each URL in urls, executes them one-by-one in the order they are passed, and then returns (or throws if something went amiss).
*/
importScripts(...urls: string[]): void;
addEventListener<K extends keyof WorkerGlobalScopeEventMap>(type: K, listener: (this: WorkerGlobalScope, ev: WorkerGlobalScopeEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
removeEventListener<K extends keyof WorkerGlobalScopeEventMap>(type: K, listener: (this: WorkerGlobalScope, ev: WorkerGlobalScopeEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
@ -5400,12 +5491,12 @@ interface WorkerLocation {
readonly host: string;
readonly hostname: string;
readonly href: string;
toString(): string;
readonly origin: string;
readonly pathname: string;
readonly port: string;
readonly protocol: string;
readonly search: string;
toString(): string;
}
declare var WorkerLocation: {
@ -5414,7 +5505,7 @@ declare var WorkerLocation: {
};
/** A subset of the Navigator interface allowed to be accessed from a Worker. Such an object is initialized for each worker and is available via the WorkerGlobalScope.navigator property obtained by calling window.self.navigator. */
interface WorkerNavigator extends NavigatorID, NavigatorOnLine, NavigatorBeacon, NavigatorConcurrentHardware, NavigatorStorage {
interface WorkerNavigator extends NavigatorConcurrentHardware, NavigatorID, NavigatorLanguage, NavigatorOnLine, NavigatorStorage {
readonly permissions: Permissions;
readonly serviceWorker: ServiceWorkerContainer;
}
@ -5424,13 +5515,6 @@ declare var WorkerNavigator: {
new(): WorkerNavigator;
};
interface WorkerUtils extends WindowBase64 {
readonly indexedDB: IDBFactory;
readonly msIndexedDB: IDBFactory;
readonly navigator: WorkerNavigator;
importScripts(...urls: string[]): void;
}
/** This Streams API interface provides a standard abstraction for writing streaming data to a destination, known as a sink. This object comes with built-in backpressure and queuing. */
interface WritableStream<W = any> {
readonly locked: boolean;
@ -5612,6 +5696,33 @@ declare var XMLHttpRequestUpload: {
declare type EventListenerOrEventListenerObject = EventListener | EventListenerObject;
interface Console {
memory: any;
assert(condition?: boolean, ...data: any[]): void;
clear(): void;
count(label?: string): void;
countReset(label?: string): void;
debug(...data: any[]): void;
dir(item?: any, options?: any): void;
dirxml(...data: any[]): void;
error(...data: any[]): void;
exception(message?: string, ...optionalParams: any[]): void;
group(...data: any[]): void;
groupCollapsed(...data: any[]): void;
groupEnd(): void;
info(...data: any[]): void;
log(...data: any[]): void;
table(tabularData?: any, properties?: string[]): void;
time(label?: string): void;
timeEnd(label?: string): void;
timeLog(label?: string, ...data: any[]): void;
timeStamp(label?: string): void;
trace(...data: any[]): void;
warn(...data: any[]): void;
}
declare var console: Console;
declare namespace WebAssembly {
interface Global {
value: any;
@ -5620,16 +5731,16 @@ declare namespace WebAssembly {
var Global: {
prototype: Global;
new(descriptor: GlobalDescriptor, value?: any): Global;
new(descriptor: GlobalDescriptor, v?: any): Global;
};
interface Instance {
readonly exports: any;
readonly exports: Exports;
}
var Instance: {
prototype: Instance;
new(module: Module, importObject?: any): Instance;
new(module: Module, importObject?: Imports): Instance;
};
interface Memory {
@ -5648,9 +5759,9 @@ declare namespace WebAssembly {
var Module: {
prototype: Module;
new(bytes: BufferSource): Module;
customSections(module: Module, sectionName: string): ArrayBuffer[];
exports(module: Module): ModuleExportDescriptor[];
imports(module: Module): ModuleImportDescriptor[];
customSections(moduleObject: Module, sectionName: string): ArrayBuffer[];
exports(moduleObject: Module): ModuleExportDescriptor[];
imports(moduleObject: Module): ModuleImportDescriptor[];
};
interface Table {
@ -5667,7 +5778,7 @@ declare namespace WebAssembly {
interface GlobalDescriptor {
mutable?: boolean;
value: string;
value: ValueType;
}
interface MemoryDescriptor {
@ -5697,22 +5808,30 @@ declare namespace WebAssembly {
module: Module;
}
type ImportExportKind = "function" | "table" | "memory" | "global";
type ImportExportKind = "function" | "global" | "memory" | "table";
type TableKind = "anyfunc";
type ValueType = "f32" | "f64" | "i32" | "i64";
type ExportValue = Function | Global | Memory | Table;
type Exports = Record<string, ExportValue>;
type ImportValue = ExportValue | number;
type ModuleImports = Record<string, ImportValue>;
type Imports = Record<string, ModuleImports>;
function compile(bytes: BufferSource): Promise<Module>;
function instantiate(bytes: BufferSource, importObject?: any): Promise<WebAssemblyInstantiatedSource>;
function instantiate(moduleObject: Module, importObject?: any): Promise<Instance>;
function compileStreaming(source: Response | Promise<Response>): Promise<Module>;
function instantiate(bytes: BufferSource, importObject?: Imports): Promise<WebAssemblyInstantiatedSource>;
function instantiate(moduleObject: Module, importObject?: Imports): Promise<Instance>;
function instantiateStreaming(response: Response | PromiseLike<Response>, importObject?: Imports): Promise<WebAssemblyInstantiatedSource>;
function validate(bytes: BufferSource): boolean;
}
interface EventHandlerNonNull {
(event: Event): any;
}
interface FrameRequestCallback {
(time: number): void;
}
interface OnErrorEventHandlerNonNull {
(event: Event | string, source?: string, lineno?: number, colno?: number, error?: Error): any;
}
interface PerformanceObserverCallback {
(entries: PerformanceObserverEntryList, observer: PerformanceObserver): void;
}
@ -5741,6 +5860,10 @@ interface TransformStreamDefaultControllerTransformCallback<I, O> {
(chunk: I, controller: TransformStreamDefaultController<O>): void | PromiseLike<void>;
}
interface VoidFunction {
(): void;
}
interface WritableStreamDefaultControllerCloseCallback {
(): void | PromiseLike<void>;
}
@ -5757,45 +5880,62 @@ interface WritableStreamErrorCallback {
(reason: any): void | PromiseLike<void>;
}
/**
* Returns dedicatedWorkerGlobal's name, i.e. the value given to the Worker constructor. Primarily useful for debugging.
*/
declare var name: string;
declare var onmessage: ((this: DedicatedWorkerGlobalScope, ev: MessageEvent) => any) | null;
declare var onmessageerror: ((this: DedicatedWorkerGlobalScope, ev: MessageEvent) => any) | null;
/**
* Aborts dedicatedWorkerGlobal.
*/
declare function close(): void;
/**
* Clones message and transmits it to the Worker object associated with dedicatedWorkerGlobal. transfer can be passed as a list of objects that are to be transferred rather than cloned.
*/
declare function postMessage(message: any, transfer: Transferable[]): void;
declare function postMessage(message: any, options?: PostMessageOptions): void;
/**
* Dispatches a synthetic event event to target and returns true if either event's cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise.
*/
declare function dispatchEvent(event: Event): boolean;
declare var caches: CacheStorage;
declare var isSecureContext: boolean;
/**
* Returns workerGlobal's WorkerLocation object.
*/
declare var location: WorkerLocation;
declare var navigator: WorkerNavigator;
declare var onerror: ((this: DedicatedWorkerGlobalScope, ev: ErrorEvent) => any) | null;
declare var performance: Performance;
declare var onlanguagechange: ((this: DedicatedWorkerGlobalScope, ev: Event) => any) | null;
declare var onoffline: ((this: DedicatedWorkerGlobalScope, ev: Event) => any) | null;
declare var ononline: ((this: DedicatedWorkerGlobalScope, ev: Event) => any) | null;
declare var onrejectionhandled: ((this: DedicatedWorkerGlobalScope, ev: PromiseRejectionEvent) => any) | null;
declare var onunhandledrejection: ((this: DedicatedWorkerGlobalScope, ev: PromiseRejectionEvent) => any) | null;
/**
* Returns workerGlobal.
*/
declare var self: WorkerGlobalScope & typeof globalThis;
declare function msWriteProfilerMark(profilerMarkName: string): void;
/**
* Fetches each URL in urls, executes them one-by-one in the order they are passed, and then returns (or throws if something went amiss).
*/
declare function importScripts(...urls: string[]): void;
/**
* Dispatches a synthetic event event to target and returns true if either event's cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise.
*/
declare function dispatchEvent(event: Event): boolean;
declare var indexedDB: IDBFactory;
declare var msIndexedDB: IDBFactory;
declare var navigator: WorkerNavigator;
declare function importScripts(...urls: string[]): void;
declare function atob(encodedString: string): string;
declare function btoa(rawString: string): string;
declare var console: Console;
declare var caches: CacheStorage;
declare var crypto: Crypto;
declare var indexedDB: IDBFactory;
declare var isSecureContext: boolean;
declare var origin: string;
declare var performance: Performance;
declare function atob(data: string): string;
declare function btoa(data: string): string;
declare function clearInterval(handle?: number): void;
declare function clearTimeout(handle?: number): void;
declare function createImageBitmap(image: ImageBitmapSource): Promise<ImageBitmap>;
declare function createImageBitmap(image: ImageBitmapSource, sx: number, sy: number, sw: number, sh: number): Promise<ImageBitmap>;
declare function createImageBitmap(image: ImageBitmapSource, options?: ImageBitmapOptions): Promise<ImageBitmap>;
declare function createImageBitmap(image: ImageBitmapSource, sx: number, sy: number, sw: number, sh: number, options?: ImageBitmapOptions): Promise<ImageBitmap>;
declare function fetch(input: RequestInfo, init?: RequestInit): Promise<Response>;
declare function queueMicrotask(callback: Function): void;
declare function queueMicrotask(callback: VoidFunction): void;
declare function setInterval(handler: TimerHandler, timeout?: number, ...arguments: any[]): number;
declare function setTimeout(handler: TimerHandler, timeout?: number, ...arguments: any[]): number;
declare function cancelAnimationFrame(handle: number): void;
@ -5813,9 +5953,11 @@ type CanvasImageSource = ImageBitmap | OffscreenCanvas;
type OffscreenRenderingContext = OffscreenCanvasRenderingContext2D | ImageBitmapRenderingContext | WebGLRenderingContext | WebGL2RenderingContext;
type MessageEventSource = MessagePort | ServiceWorker;
type ImageBitmapSource = CanvasImageSource | Blob | ImageData;
type OnErrorEventHandler = OnErrorEventHandlerNonNull | null;
type TimerHandler = string | Function;
type PerformanceEntryList = PerformanceEntry[];
type PushMessageDataInit = BufferSource | string;
type ReadableStreamReadResult<T> = ReadableStreamReadValueResult<T> | ReadableStreamReadDoneResult<T>;
type VibratePattern = number | number[];
type AlgorithmIdentifier = string | Algorithm;
type HashAlgorithmIdentifier = AlgorithmIdentifier;
@ -5841,41 +5983,45 @@ type BufferSource = ArrayBufferView | ArrayBuffer;
type DOMTimeStamp = number;
type FormDataEntryValue = File | string;
type IDBValidKey = number | string | Date | BufferSource | IDBArrayKey;
type Transferable = ArrayBuffer | MessagePort | ImageBitmap;
type BinaryType = "blob" | "arraybuffer";
type CanvasDirection = "ltr" | "rtl" | "inherit";
type CanvasFillRule = "nonzero" | "evenodd";
type Transferable = ArrayBuffer | MessagePort | ImageBitmap | OffscreenCanvas;
type BinaryType = "arraybuffer" | "blob";
type CanvasDirection = "inherit" | "ltr" | "rtl";
type CanvasFillRule = "evenodd" | "nonzero";
type CanvasLineCap = "butt" | "round" | "square";
type CanvasLineJoin = "round" | "bevel" | "miter";
type CanvasTextAlign = "start" | "end" | "left" | "right" | "center";
type CanvasTextBaseline = "top" | "hanging" | "middle" | "alphabetic" | "ideographic" | "bottom";
type ClientTypes = "window" | "worker" | "sharedworker" | "all";
type EndingType = "transparent" | "native";
type FrameType = "auxiliary" | "top-level" | "nested" | "none";
type CanvasLineJoin = "bevel" | "miter" | "round";
type CanvasTextAlign = "center" | "end" | "left" | "right" | "start";
type CanvasTextBaseline = "alphabetic" | "bottom" | "hanging" | "ideographic" | "middle" | "top";
type ClientTypes = "all" | "sharedworker" | "window" | "worker";
type ColorSpaceConversion = "default" | "none";
type EndingType = "native" | "transparent";
type FrameType = "auxiliary" | "nested" | "none" | "top-level";
type IDBCursorDirection = "next" | "nextunique" | "prev" | "prevunique";
type IDBRequestReadyState = "pending" | "done";
type IDBRequestReadyState = "done" | "pending";
type IDBTransactionMode = "readonly" | "readwrite" | "versionchange";
type ImageSmoothingQuality = "low" | "medium" | "high";
type KeyFormat = "raw" | "spki" | "pkcs8" | "jwk";
type KeyType = "public" | "private" | "secret";
type KeyUsage = "encrypt" | "decrypt" | "sign" | "verify" | "deriveKey" | "deriveBits" | "wrapKey" | "unwrapKey";
type ImageOrientation = "flipY" | "none";
type ImageSmoothingQuality = "high" | "low" | "medium";
type KeyFormat = "jwk" | "pkcs8" | "raw" | "spki";
type KeyType = "private" | "public" | "secret";
type KeyUsage = "decrypt" | "deriveBits" | "deriveKey" | "encrypt" | "sign" | "unwrapKey" | "verify" | "wrapKey";
type NotificationDirection = "auto" | "ltr" | "rtl";
type NotificationPermission = "default" | "denied" | "granted";
type OffscreenRenderingContextId = "2d" | "bitmaprenderer" | "webgl" | "webgl2";
type PermissionName = "geolocation" | "notifications" | "push" | "midi" | "camera" | "microphone" | "speaker" | "device-info" | "background-sync" | "bluetooth" | "persistent-storage" | "ambient-light-sensor" | "accelerometer" | "gyroscope" | "magnetometer" | "clipboard";
type PermissionState = "granted" | "denied" | "prompt";
type PushEncryptionKeyName = "p256dh" | "auth";
type PermissionName = "accelerometer" | "ambient-light-sensor" | "background-sync" | "bluetooth" | "camera" | "clipboard" | "device-info" | "geolocation" | "gyroscope" | "magnetometer" | "microphone" | "midi" | "notifications" | "persistent-storage" | "push" | "speaker";
type PermissionState = "denied" | "granted" | "prompt";
type PremultiplyAlpha = "default" | "none" | "premultiply";
type PushEncryptionKeyName = "auth" | "p256dh";
type PushPermissionState = "denied" | "granted" | "prompt";
type ReferrerPolicy = "" | "no-referrer" | "no-referrer-when-downgrade" | "same-origin" | "origin" | "strict-origin" | "origin-when-cross-origin" | "strict-origin-when-cross-origin" | "unsafe-url";
type RequestCache = "default" | "no-store" | "reload" | "no-cache" | "force-cache" | "only-if-cached";
type RequestCredentials = "omit" | "same-origin" | "include";
type ReferrerPolicy = "" | "no-referrer" | "no-referrer-when-downgrade" | "origin" | "origin-when-cross-origin" | "same-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url";
type RequestCache = "default" | "force-cache" | "no-cache" | "no-store" | "only-if-cached" | "reload";
type RequestCredentials = "include" | "omit" | "same-origin";
type RequestDestination = "" | "audio" | "audioworklet" | "document" | "embed" | "font" | "image" | "manifest" | "object" | "paintworklet" | "report" | "script" | "sharedworker" | "style" | "track" | "video" | "worker" | "xslt";
type RequestMode = "navigate" | "same-origin" | "no-cors" | "cors";
type RequestRedirect = "follow" | "error" | "manual";
type RequestMode = "cors" | "navigate" | "no-cors" | "same-origin";
type RequestRedirect = "error" | "follow" | "manual";
type ResizeQuality = "high" | "low" | "medium" | "pixelated";
type ResponseType = "basic" | "cors" | "default" | "error" | "opaque" | "opaqueredirect";
type ServiceWorkerState = "installing" | "installed" | "activating" | "activated" | "redundant";
type ServiceWorkerUpdateViaCache = "imports" | "all" | "none";
type VisibilityState = "hidden" | "visible" | "prerender";
type WebGLPowerPreference = "default" | "low-power" | "high-performance";
type ServiceWorkerState = "activated" | "activating" | "installed" | "installing" | "parsed" | "redundant";
type ServiceWorkerUpdateViaCache = "all" | "imports" | "none";
type VisibilityState = "hidden" | "visible";
type WebGLPowerPreference = "default" | "high-performance" | "low-power";
type WorkerType = "classic" | "module";
type XMLHttpRequestResponseType = "" | "arraybuffer" | "blob" | "document" | "json" | "text";

File diff suppressed because it is too large Load Diff

View File

@ -64,7 +64,10 @@ declare namespace ts.server.protocol {
OrganizeImports = "organizeImports",
GetEditsForFileRename = "getEditsForFileRename",
ConfigurePlugin = "configurePlugin",
SelectionRange = "selectionRange"
SelectionRange = "selectionRange",
PrepareCallHierarchy = "prepareCallHierarchy",
ProvideCallHierarchyIncomingCalls = "provideCallHierarchyIncomingCalls",
ProvideCallHierarchyOutgoingCalls = "provideCallHierarchyOutgoingCalls"
}
/**
* A TypeScript Server message
@ -143,6 +146,16 @@ declare namespace ts.server.protocol {
* Contains extra information that plugin can include to be passed on
*/
metadata?: unknown;
/**
* Exposes information about the performance of this request-response pair.
*/
performanceData?: PerformanceData;
}
interface PerformanceData {
/**
* Time spent updating the program graph, in milliseconds.
*/
updateGraphDurationMs?: number;
}
/**
* Arguments for FileRequest messages.
@ -467,7 +480,7 @@ declare namespace ts.server.protocol {
scope: OrganizeImportsScope;
}
interface OrganizeImportsResponse extends Response {
body: ReadonlyArray<FileCodeEdits>;
body: readonly FileCodeEdits[];
}
interface GetEditsForFileRenameRequest extends Request {
command: CommandTypes.GetEditsForFileRename;
@ -479,7 +492,7 @@ declare namespace ts.server.protocol {
readonly newFilePath: string;
}
interface GetEditsForFileRenameResponse extends Response {
body: ReadonlyArray<FileCodeEdits>;
body: readonly FileCodeEdits[];
}
/**
* Request for the available codefixes at a specific position.
@ -526,7 +539,7 @@ declare namespace ts.server.protocol {
/**
* Errorcodes we want to get the fixes for.
*/
errorCodes: ReadonlyArray<number>;
errorCodes: readonly number[];
}
interface GetCombinedCodeFixRequestArgs {
scope: GetCombinedCodeFixScope;
@ -643,7 +656,7 @@ declare namespace ts.server.protocol {
interface FileSpanWithContext extends FileSpan, TextSpanWithContext {
}
interface DefinitionInfoAndBoundSpan {
definitions: ReadonlyArray<FileSpanWithContext>;
definitions: readonly FileSpanWithContext[];
textSpan: TextSpan;
}
/**
@ -652,9 +665,11 @@ declare namespace ts.server.protocol {
interface DefinitionResponse extends Response {
body?: FileSpanWithContext[];
}
interface DefinitionInfoAndBoundSpanReponse extends Response {
interface DefinitionInfoAndBoundSpanResponse extends Response {
body?: DefinitionInfoAndBoundSpan;
}
/** @deprecated Use `DefinitionInfoAndBoundSpanResponse` instead. */
type DefinitionInfoAndBoundSpanReponse = DefinitionInfoAndBoundSpanResponse;
/**
* Definition response message. Gives text range for definition.
*/
@ -781,7 +796,7 @@ declare namespace ts.server.protocol {
/**
* The file locations referencing the symbol.
*/
refs: ReadonlyArray<ReferencesResponseItem>;
refs: readonly ReferencesResponseItem[];
/**
* The name of the symbol.
*/
@ -885,7 +900,7 @@ declare namespace ts.server.protocol {
/**
* An array of span groups (one per file) that refer to the item to be renamed.
*/
locs: ReadonlyArray<SpanGroup>;
locs: readonly SpanGroup[];
}
/**
* Rename response message.
@ -955,7 +970,17 @@ declare namespace ts.server.protocol {
* For external projects, some of the project settings are sent together with
* compiler settings.
*/
type ExternalProjectCompilerOptions = CompilerOptions & CompileOnSaveMixin;
type ExternalProjectCompilerOptions = CompilerOptions & CompileOnSaveMixin & WatchOptions;
interface FileWithProjectReferenceRedirectInfo {
/**
* Name of file
*/
fileName: string;
/**
* True if the file is primarily included in a referenced project
*/
isSourceOfProjectReferenceRedirect: boolean;
}
/**
* Represents a set of changes that happen in project
*/
@ -963,15 +988,20 @@ declare namespace ts.server.protocol {
/**
* List of added files
*/
added: string[];
added: string[] | FileWithProjectReferenceRedirectInfo[];
/**
* List of removed files
*/
removed: string[];
removed: string[] | FileWithProjectReferenceRedirectInfo[];
/**
* List of updated files
*/
updated: string[];
updated: string[] | FileWithProjectReferenceRedirectInfo[];
/**
* List of files that have had their project reference redirect status updated
* Only provided when the synchronizeProjectList request has includeProjectReferenceRedirectInfo set to true
*/
updatedRedirects?: FileWithProjectReferenceRedirectInfo[];
}
/**
* Information found in a configure request.
@ -995,6 +1025,31 @@ declare namespace ts.server.protocol {
* The host's additional supported .js file extensions
*/
extraFileExtensions?: FileExtensionInfo[];
watchOptions?: WatchOptions;
}
const enum WatchFileKind {
FixedPollingInterval = "FixedPollingInterval",
PriorityPollingInterval = "PriorityPollingInterval",
DynamicPriorityPolling = "DynamicPriorityPolling",
UseFsEvents = "UseFsEvents",
UseFsEventsOnParentDirectory = "UseFsEventsOnParentDirectory"
}
const enum WatchDirectoryKind {
UseFsEvents = "UseFsEvents",
FixedPollingInterval = "FixedPollingInterval",
DynamicPriorityPolling = "DynamicPriorityPolling"
}
const enum PollingWatchKind {
FixedInterval = "FixedInterval",
PriorityInterval = "PriorityInterval",
DynamicPriority = "DynamicPriority"
}
interface WatchOptions {
watchFile?: WatchFileKind | ts.WatchFileKind;
watchDirectory?: WatchDirectoryKind | ts.WatchDirectoryKind;
fallbackPolling?: PollingWatchKind | ts.PollingWatchKind;
synchronousWatchDirectory?: boolean;
[option: string]: CompilerOptionsValue | undefined;
}
/**
* Configure request; value of command field is "configure". Specifies
@ -1248,6 +1303,16 @@ declare namespace ts.server.protocol {
* if true - then file should be recompiled even if it does not have any changes.
*/
forced?: boolean;
includeLinePosition?: boolean;
/** if true - return response as object with emitSkipped and diagnostics */
richResponse?: boolean;
}
interface CompileOnSaveEmitFileResponse extends Response {
body: boolean | EmitResult;
}
interface EmitResult {
emitSkipped: boolean;
diagnostics: Diagnostic[] | DiagnosticWithLinePosition[];
}
/**
* Quickinfo request; value of command field is
@ -1364,8 +1429,8 @@ declare namespace ts.server.protocol {
commands?: {}[];
}
interface CombinedCodeActions {
changes: ReadonlyArray<FileCodeEdits>;
commands?: ReadonlyArray<{}>;
changes: readonly FileCodeEdits[];
commands?: readonly {}[];
}
interface CodeFixAction extends CodeAction {
/** Short name to identify the fix, for use by telemetry. */
@ -1406,7 +1471,7 @@ declare namespace ts.server.protocol {
command: CommandTypes.Formatonkey;
arguments: FormatOnKeyRequestArgs;
}
type CompletionsTriggerCharacter = "." | '"' | "'" | "`" | "/" | "@" | "<";
type CompletionsTriggerCharacter = "." | '"' | "'" | "`" | "/" | "@" | "<" | "#";
/**
* Arguments for completions messages.
*/
@ -1523,6 +1588,11 @@ declare namespace ts.server.protocol {
* Then either that enum/class or a namespace containing it will be the recommended symbol.
*/
isRecommended?: true;
/**
* If true, this completion was generated from traversing the name table of an unchecked JS file,
* and therefore may not be accurate.
*/
isFromUncheckedFile?: true;
}
/**
* Additional completion entry details, available on demand
@ -1572,7 +1642,7 @@ declare namespace ts.server.protocol {
readonly isGlobalCompletion: boolean;
readonly isMemberCompletion: boolean;
readonly isNewIdentifierLocation: boolean;
readonly entries: ReadonlyArray<CompletionEntry>;
readonly entries: readonly CompletionEntry[];
}
interface CompletionDetailsResponse extends Response {
body?: CompletionEntryDetails[];
@ -2047,7 +2117,7 @@ declare namespace ts.server.protocol {
/**
* Arguments for navto request message.
*/
interface NavtoRequestArgs extends FileRequestArgs {
interface NavtoRequestArgs {
/**
* Search term to navigate to from current location; term can
* be '.*' or an identifier prefix.
@ -2057,6 +2127,10 @@ declare namespace ts.server.protocol {
* Optional limit on the number of items to return.
*/
maxResultCount?: number;
/**
* The file for the request (absolute pathname required).
*/
file?: string;
/**
* Optional flag to indicate we want results for just the current file
* or the entire project.
@ -2070,7 +2144,7 @@ declare namespace ts.server.protocol {
* match the search term given in argument 'searchTerm'. The
* context for the search is given by the named file.
*/
interface NavtoRequest extends FileRequest {
interface NavtoRequest extends Request {
command: CommandTypes.Navto;
arguments: NavtoRequestArgs;
}
@ -2251,7 +2325,7 @@ declare namespace ts.server.protocol {
/**
* list of packages to install
*/
packages: ReadonlyArray<string>;
packages: readonly string[];
}
interface BeginInstallTypesEventBody extends InstallTypesEventBody {
}
@ -2267,11 +2341,49 @@ declare namespace ts.server.protocol {
interface NavTreeResponse extends Response {
body?: NavigationTree;
}
interface CallHierarchyItem {
name: string;
kind: ScriptElementKind;
file: string;
span: TextSpan;
selectionSpan: TextSpan;
}
interface CallHierarchyIncomingCall {
from: CallHierarchyItem;
fromSpans: TextSpan[];
}
interface CallHierarchyOutgoingCall {
to: CallHierarchyItem;
fromSpans: TextSpan[];
}
interface PrepareCallHierarchyRequest extends FileLocationRequest {
command: CommandTypes.PrepareCallHierarchy;
}
interface PrepareCallHierarchyResponse extends Response {
readonly body: CallHierarchyItem | CallHierarchyItem[];
}
interface ProvideCallHierarchyIncomingCallsRequest extends FileLocationRequest {
command: CommandTypes.ProvideCallHierarchyIncomingCalls;
}
interface ProvideCallHierarchyIncomingCallsResponse extends Response {
readonly body: CallHierarchyIncomingCall[];
}
interface ProvideCallHierarchyOutgoingCallsRequest extends FileLocationRequest {
command: CommandTypes.ProvideCallHierarchyOutgoingCalls;
}
interface ProvideCallHierarchyOutgoingCallsResponse extends Response {
readonly body: CallHierarchyOutgoingCall[];
}
const enum IndentStyle {
None = "None",
Block = "Block",
Smart = "Smart"
}
enum SemicolonPreference {
Ignore = "ignore",
Insert = "insert",
Remove = "remove"
}
interface EditorSettings {
baseIndentSize?: number;
indentSize?: number;
@ -2279,6 +2391,7 @@ declare namespace ts.server.protocol {
newLineCharacter?: string;
convertTabsToSpaces?: boolean;
indentStyle?: IndentStyle | ts.IndentStyle;
trimTrailingWhitespace?: boolean;
}
interface FormatCodeSettings extends EditorSettings {
insertSpaceAfterCommaDelimiter?: boolean;
@ -2297,6 +2410,7 @@ declare namespace ts.server.protocol {
placeOpenBraceOnNewLineForFunctions?: boolean;
placeOpenBraceOnNewLineForControlBlocks?: boolean;
insertSpaceBeforeTypeAnnotation?: boolean;
semicolons?: SemicolonPreference;
}
interface UserPreferences {
readonly disableSuggestions?: boolean;
@ -2311,7 +2425,15 @@ declare namespace ts.server.protocol {
* For those entries, The `insertText` and `replacementSpan` properties will be set to change from `.x` property access to `["x"]`.
*/
readonly includeCompletionsWithInsertText?: boolean;
readonly importModuleSpecifierPreference?: "relative" | "non-relative";
/**
* Unless this option is `false`, or `includeCompletionsWithInsertText` is not enabled,
* member completion lists triggered with `.` will include entries on potentially-null and potentially-undefined
* values, with insertion text to replace preceding `.` tokens with `?.`.
*/
readonly includeAutomaticOptionalChainCompletions?: boolean;
readonly importModuleSpecifierPreference?: "auto" | "relative" | "non-relative";
/** Determines whether we import `foo/index.ts` as "foo", "foo/index", or "foo/index.js" */
readonly importModuleSpecifierEnding?: "auto" | "minimal" | "index" | "js";
readonly allowTextChangesInNewFiles?: boolean;
readonly lazyConfiguredProjectsFromExternalProject?: boolean;
readonly providePrefixAndSuffixTextForRename?: boolean;
@ -2380,6 +2502,7 @@ declare namespace ts.server.protocol {
strictNullChecks?: boolean;
suppressExcessPropertyErrors?: boolean;
suppressImplicitAnyIndexErrors?: boolean;
useDefineForClassFields?: boolean;
target?: ScriptTarget | ts.ScriptTarget;
traceResolution?: boolean;
resolveJsonModule?: boolean;
@ -2533,6 +2656,10 @@ declare namespace ts.server.protocol {
}
export interface TypeAcquisition {
/**
* @deprecated typingOptions.enableAutoDiscovery
* Use typeAcquisition.enable instead.
*/
enableAutoDiscovery?: boolean;
enable?: boolean;
include?: string[];
@ -2546,6 +2673,8 @@ declare namespace ts.server.protocol {
scriptKind?: ScriptKind;
}
export type CompilerOptionsValue = string | number | boolean | (string | number)[] | string[] | MapLike<string[]> | PluginImport[] | ProjectReference[] | null | undefined;
interface JSDocTagInfo {
name: string;
text?: string;
@ -2574,12 +2703,13 @@ declare namespace ts.server.protocol {
/** True if it is intended that this reference form a circularity */
circular?: boolean;
}
export type CompilerOptionsValue = string | number | boolean | (string | number)[] | string[] | MapLike<string[]> | PluginImport[] | ProjectReference[] | null | undefined;
}
declare namespace ts {
// these types are empty stubs for types from services and should not be used directly
export type ScriptKind = never;
export type WatchFileKind = never;
export type WatchDirectoryKind = never;
export type PollingWatchKind = never;
export type IndentStyle = never;
export type JsxEmit = never;
export type ModuleKind = never;

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

33741
node_modules/typescript/lib/tsc.js generated vendored

File diff suppressed because one or more lines are too long

51863
node_modules/typescript/lib/tsserver.js generated vendored

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\ProjectItemsSchema.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="zh-CN" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;ContentType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ContentType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 文件]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;ItemType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ItemType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 文件]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,195 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptCompile.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="zh-CN" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;general@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[General]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[常规]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;copytooutputdirectory@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies if the file should be copied to the output folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[指定是否应将文件复制到输出文件夹。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies the action taken on this file when an app package is produced.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[指定生成应用程序包时对此文件执行的操作。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;copytooutputdirectory@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy to Output Directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[复制到输出目录]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Package Action]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[包操作]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;always@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy always]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[始终复制]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;appxmanifest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[App Manifest]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[应用程序清单]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;content@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Content]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[内容]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;never@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Do not copy]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[不复制]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[无]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preservenewest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy if newer]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[如果较新则复制]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;priresource@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Resource]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[资源]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScriptCompile]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScriptCompile]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 文件]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 文件]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;fullpath@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Location of the file.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[文件位置。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Name of the file or folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[文件或文件夹的名称。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;fullpath@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Full Path]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[完整路径]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[File Name]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[文件名]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,492 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptProjectProperties.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="zh-CN" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 生成]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Recompile sources on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[在保存时重新编译源]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate corresponding d.ts file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[生成对应的 d.ts 文件]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify JSX code compilation mode for .tsx files, this doesn't affect .ts files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[为 .tsx 文件指定 JSX 代码编译模式,这不会影响 .ts 文件]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[External module code generation target]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[外部模块代码生成目标]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit outputs if any errors were reported]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[如果报告了任何错误,请发出输出]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Suppress warnings on expressions and declarations with an implied Any type]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[对于隐式“Any”类型禁止有关表达式和声明的警告]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit comments to output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[将注释发送到输出中。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generates corresponding .map file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[生成对应的 .map 文件]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version to use for generated JavaScript]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[要用于已生成的 JavaScript 的 ECMAScript 版本]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compile on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[在保存时编译]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate declaration files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[生成声明文件]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compilation mode for .tsx files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[.tsx 文件的编译模式]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Module system]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[模块系统]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit on error]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[出现错误时发出]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Allow implicit 'any' types]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[允许隐式 "any" 类型]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Keep comments in JavaScript output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[在 JavaScript 输出中保留注释]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[生成源映射]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 版本]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;amd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[AMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[AMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;commonjs@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[CommonJS]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[CommonJS]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es3@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 3]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 3]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es5@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 5]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 5]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es6@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 6]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 6]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[否]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[无]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preserve@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Preserve JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[保留 JSX 元素]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;react@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit React call for JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[发出 JSX 元素的 React 调用]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;system@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[System]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[系统]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[是]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;umd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[UMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[UMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[是]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[无]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[否]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[是]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[否]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[否]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[是]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[否]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[是]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[是]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[否]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 生成]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptbuild@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 生成]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptmaproot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that soucemaps while debugging will be located in the sourcemap root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[发送源映射,使得在调试期间源映射将位于源映射根目录中]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a different directory than sources]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[将输出重定向到不同于源目录的目录]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[将输出重定向到文件中]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that sources while debugging will be located in the source root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[发送源映射,使得在调试期间源映射将位于源根目录中]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmaproot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[指定源映射的根目录]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect JavaScript output to directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[将 JavaScript 输出重定向到目录]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Combine JavaScript output into file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[将 JavaScript 输出合并到文件中]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of TypeScript files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[指定 TypeScript 文件的根目录]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,123 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\Debugger\TypeScriptDebugEngine\bin\Release\TypeScriptDebugEngine.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="zh-CN" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScriptDebugEngine.TypeScriptResources.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";Document_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Document {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[文档 {0} 读取失败: {1}。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Error_decoding_sourcemap_contents" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Error decoding sourcemap contents.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[解码源映射内容时出错。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Invalid_sourcemap_url_0_for_script_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Invalid sourcemap url {0} for script {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[脚本 {1} 的源映射 URL {0} 无效。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Sourcemap_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[SourceMap {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[源映射 {0} 读取失败: {1}。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_format_of_sourcemap" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported format of the sourcemap.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[源映射的格式不受支持。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_inline_sourcemap_format_specified_SourceMap_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported inline sourcemap format specified. SourceMap: {0}]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[指定了不受支持的嵌入式源映射格式。源映射: {0}]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 调试引擎]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation。保留所有权利。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 调试引擎]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,177 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\TypeScript.Tasks.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="zh-CN" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScript.Tasks.Strings.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";CompilerLogNotSpecified" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[No compiler log specified, 'Clean' won't work.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[未指定任何编译器日志,“清理”将不起作用。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ConfigFileFoundOnDisk" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[This project is using one or more tsconfig.json files for the build that may not be properly used by IntelliSense. Please set the item type of each tsconfig.json file to TypeScriptCompile or Content to ensure they are used properly by the editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[此项目正在针对生成使用一个或多个 tsconfig.json 文件,而 IntelliSense 可能未正确使用它们。请将每个 tsconfig.json 文件的项目类型设置为 TypeScriptCompile 或 Content确保编辑器均正确使用它们。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorListBuildPrefix" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Build:]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[生成:]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorWritingLog" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Failed to write compiler log to '{0}. Exception: '{1}']]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[无法将编译器日志写入“{0}”。 异常:“{1}”]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FallbackVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Using compiler version ({0}), if this is incorrect change the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[使用编译器版本({0}),如果这不正确,则更改项目文件中的 <TypeScriptToolsVersion> 元素。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LocatedReferenceFilesAt_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Located references file at: '{0}'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[已将引用文件放置在“{0}”处。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NoCompilerError" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project file uses a different version of the TypeScript compiler and tools than is currently installed on this machine. No compiler was found at {0}. You may be able to fix this problem by changing the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[你的项目文件使用的 TypeScript 编译器和工具的版本不同于此计算机上当前安装的版本。在 {0} 处未找到编译器。通过更改项目文件中的 <TypeScriptToolsVersion> 元素,或许可以修复此问题。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NodeNotFound" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[The build task could not find node.exe which is required to run the TypeScript compiler. Please install Node and ensure that the system path contains its location.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[生成任务找不到运行 TypeScript 编译器所需的 node.exe。请安装 Node 并确保系统路径包含其位置。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ToolsVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Couldn't locate the compiler version ({0}) specified in the project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[找不到项目文件中指定的编译器版本({0})。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptCompileBlockedSet" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript compile is skipped because the TypeScriptCompileBlocked property is set to 'true'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[由于 TypeScriptCompileBlocked 属性设置为 "true",因此会跳过 TypeScript 编译。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptNoVersionWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project does not specify a TypeScriptToolsVersion. The latest available TypeScript compiler will be used ({0}). To remove this warning, set TypeScriptToolsVersion to a specific version or "Latest" to always select the latest compiler.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[项目未指定 TypeScriptToolsVersion。系统将使用最新可用的 TypeScript 编译器({0})。若要消除此警告,请将 TypeScriptToolsVersion 设置为特定版本或“最新版本”以始终选择最新编译器。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptVersionMismatchWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project specifies TypeScriptToolsVersion {0}, but a matching compiler was not found. The latest available TypeScript compiler will be used ({1}). To remove this warning, install the TypeScript {0} SDK or update the value of TypeScriptToolsVersion.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[项目指定 TypeScriptToolsVersion {0},但未找到匹配的编译器。系统将使用最新可用的 TypeScript 编译器({1})。若要消除此警告,请安装 TypeScript {0} SDK 或更新 TypeScriptToolsVersion 的值。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 生成任务]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation。保留所有权利。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 生成任务]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\ProjectItemsSchema.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="zh-TW" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;ContentType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ContentType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 檔案]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;ItemType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ItemType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 檔案]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,195 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptCompile.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="zh-TW" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;general@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[General]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[一般]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;copytooutputdirectory@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies if the file should be copied to the output folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[指定檔案是否應複製到輸出資料夾。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies the action taken on this file when an app package is produced.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[指定當應用程式套件產生之後,要對此檔案採取的動作。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;copytooutputdirectory@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy to Output Directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[複製到輸出目錄]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Package Action]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[封裝動作]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;always@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy always]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[永遠複製]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;appxmanifest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[App Manifest]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[應用程式資訊清單]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;content@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Content]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[內容]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;never@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Do not copy]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[不要複製]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[無]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preservenewest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy if newer]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[有更新時才複製]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;priresource@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Resource]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[資源]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScriptCompile]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScriptCompile]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 檔案]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 檔案]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;fullpath@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Location of the file.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[檔案的位置。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Name of the file or folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[檔案或資料夾的名稱。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;fullpath@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Full Path]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[完整路徑]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[File Name]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[檔案名稱]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,492 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptProjectProperties.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="zh-TW" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 建置]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Recompile sources on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[儲存時重新編譯來源]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate corresponding d.ts file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[產生對應的 d.ts 檔案]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify JSX code compilation mode for .tsx files, this doesn't affect .ts files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[為 .tsx 檔指定 JSX 程式碼編譯模式,這不會影響 .ts 檔]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[External module code generation target]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[外部模組程式碼產生目標]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit outputs if any errors were reported]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[如果回報任何錯誤,則發出輸出]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Suppress warnings on expressions and declarations with an implied Any type]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[不顯示對具有隱含 Any 類型之運算式與宣告的警告]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit comments to output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[將註解發至輸出]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generates corresponding .map file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[產生對應的 .map 檔案]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version to use for generated JavaScript]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[產生之 JavaScript 所要使用的 ECMAScript 版本]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compile on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[儲存時編譯]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate declaration files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[產生宣告檔案]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compilation mode for .tsx files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[.tsx 檔的編譯模式]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Module system]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[模組系統]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit on error]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[錯誤時發出]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Allow implicit 'any' types]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[允許隱含的 'any' 類型]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Keep comments in JavaScript output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[在 JavaScript 輸出中保留註解]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[產生來源對應]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 版本]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;amd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[AMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[AMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;commonjs@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[CommonJS]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[CommonJS]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es3@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 3]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 3]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es5@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 5]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 5]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es6@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 6]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 6]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[否]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[無]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preserve@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Preserve JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[保留 JSX 項目]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;react@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit React call for JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[針對 JSX 項目發出 React 呼叫]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;system@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[System]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[系統]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[是]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;umd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[UMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[UMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[是]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[無]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[否]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[是]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[否]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[否]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[是]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[否]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[是]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[是]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[否]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 建置]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptbuild@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 建置]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptmaproot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that soucemaps while debugging will be located in the sourcemap root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[發出 sourcemap以便偵錯時可以在 sourcemap 根目錄中找到 sourcemap。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a different directory than sources]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[將輸出重新導向至不同於來源的目錄]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[將輸出重新導向至檔案]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that sources while debugging will be located in the source root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[發出 sourcemap以便偵錯時可以在來源根目錄中找到來源。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmaproot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[指定來源對應的根目錄]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect JavaScript output to directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[將 JavaScript 輸出重新導向至目錄]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Combine JavaScript output into file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[將 JavaScript 輸出合併至檔案]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of TypeScript files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[指定 TypeScript 檔案的根目錄]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,123 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\Debugger\TypeScriptDebugEngine\bin\Release\TypeScriptDebugEngine.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="zh-TW" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScriptDebugEngine.TypeScriptResources.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";Document_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Document {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[文件 {0} 讀取失敗: {1}。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Error_decoding_sourcemap_contents" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Error decoding sourcemap contents.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[解碼 sourcemap 內容時發生錯誤。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Invalid_sourcemap_url_0_for_script_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Invalid sourcemap url {0} for script {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[指令碼 {1} 的 sourcemap URL {0} 無效。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Sourcemap_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[SourceMap {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[SourceMap {0} 讀取失敗: {1}。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_format_of_sourcemap" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported format of the sourcemap.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[不支援的 sourcemap 格式。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_inline_sourcemap_format_specified_SourceMap_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported inline sourcemap format specified. SourceMap: {0}]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[不支援指定的內嵌 sourcemap 格式。SourceMap: {0}]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 偵錯引擎]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. 著作權所有,並保留一切權利。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 偵錯引擎]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,177 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\TypeScript.Tasks.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="zh-TW" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScript.Tasks.Strings.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";CompilerLogNotSpecified" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[No compiler log specified, 'Clean' won't work.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[未指定編譯器記錄檔,因此 [清除]5D; 將無法運作。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ConfigFileFoundOnDisk" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[This project is using one or more tsconfig.json files for the build that may not be properly used by IntelliSense. Please set the item type of each tsconfig.json file to TypeScriptCompile or Content to ensure they are used properly by the editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[此專案正在對 IntelliSense 可能無法正確使用的組建,使用一或多個 tsconfig.json 檔案。請將每個 tsconfig.json 檔案的項目類型設定為 TypeScriptCompile 或 Content以確保編輯器正確使用它們。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorListBuildPrefix" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Build:]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[建置:]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorWritingLog" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Failed to write compiler log to '{0}. Exception: '{1}']]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[無法將編譯器記錄檔寫入 '{0}。例外狀況: '{1}']]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FallbackVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Using compiler version ({0}), if this is incorrect change the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[將使用編譯器版本 ({0}),若此版本不正確,請變更專案檔中的 <TypeScriptToolsVersion> 元素。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LocatedReferenceFilesAt_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Located references file at: '{0}'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[在 '{0}' 找到參考檔案。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NoCompilerError" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project file uses a different version of the TypeScript compiler and tools than is currently installed on this machine. No compiler was found at {0}. You may be able to fix this problem by changing the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[您的專案檔使用的 TypeScript 編譯器和工具版本與這部電腦目前安裝的版本不同。在 {0} 找不到任何編譯器。變更專案檔中的 <TypeScriptToolsVersion> 元素,或許可以修正此問題。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NodeNotFound" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[The build task could not find node.exe which is required to run the TypeScript compiler. Please install Node and ensure that the system path contains its location.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[建置工作找不到執行 TypeScript 編譯器所需的 node.exe。請安裝 Node並確定系統路徑中包含其位置。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ToolsVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Couldn't locate the compiler version ({0}) specified in the project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[找不到專案檔中指定的編譯器版本 ({0})。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptCompileBlockedSet" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript compile is skipped because the TypeScriptCompileBlocked property is set to 'true'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[因為 TypeScriptCompileBlocked 屬性設為 'true',所以跳過 TypeScript 編譯。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptNoVersionWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project does not specify a TypeScriptToolsVersion. The latest available TypeScript compiler will be used ({0}). To remove this warning, set TypeScriptToolsVersion to a specific version or "Latest" to always select the latest compiler.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[您的專案未指定 TypeScriptToolsVersion。系統會使用最新的可用 TypeScript 編譯器 ({0})。若要移除這個警告,請將 TypeScriptToolsVersion 設為特定版本,或 [最新]5D; 以一律選取最新編譯器。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptVersionMismatchWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project specifies TypeScriptToolsVersion {0}, but a matching compiler was not found. The latest available TypeScript compiler will be used ({1}). To remove this warning, install the TypeScript {0} SDK or update the value of TypeScriptToolsVersion.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[您的專案指定了 TypeScriptToolsVersion {0},但找不到相符的編譯器。系統會使用最新可用的 TypeScript 編譯器 ({1})。若要移除此警告,請安裝 TypeScript {0} SDK 或更新 TypeScriptToolsVersion 的值。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 建置工作]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. 著作權所有,並保留一切權利。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 建置工作]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\ProjectItemsSchema.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="cs-CZ" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;ContentType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ContentType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Soubor TypeScriptu]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;ItemType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ItemType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Soubor TypeScriptu]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,195 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptCompile.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="cs-CZ" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;general@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[General]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Obecné]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;copytooutputdirectory@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies if the file should be copied to the output folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Určuje, jestli se má soubor zkopírovat do výstupní složky.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies the action taken on this file when an app package is produced.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Určuje akci pro tento soubor, když je vytvořený balíček aplikace.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;copytooutputdirectory@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy to Output Directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Kopírovat do výstupního adresáře]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Package Action]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Akce balíčku]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;always@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy always]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Vždycky kopírovat]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;appxmanifest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[App Manifest]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Manifest aplikace]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;content@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Content]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Obsah]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;never@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Do not copy]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nekopírovat]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Žádný]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preservenewest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy if newer]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Kopírovat, pokud je novější]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;priresource@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Resource]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Prostředek]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScriptCompile]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScriptCompile]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Soubor TypeScriptu]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Soubor TypeScriptu]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;fullpath@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Location of the file.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Umístění souboru]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Name of the file or folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Název souboru nebo složky]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;fullpath@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Full Path]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Úplná cesta]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[File Name]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Název souboru]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,492 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptProjectProperties.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="cs-CZ" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Build TypeScriptu]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Recompile sources on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Překompiluje zdrojový kód při uložení.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate corresponding d.ts file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Generuje odpovídající soubor d.ts.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify JSX code compilation mode for .tsx files, this doesn't affect .ts files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Určuje režim kompilace kódu JSX pro soubory .tsx. Na soubory .ts to nemá vliv.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[External module code generation target]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Cíl generování kódu externího modulu]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit outputs if any errors were reported]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Generovat výstupy při oznámení chyb]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Suppress warnings on expressions and declarations with an implied Any type]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Potlačí upozornění na výrazy a deklarace s implikovaným typem any.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit comments to output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Generuje komentáře do výstupu.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generates corresponding .map file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Generuje odpovídající soubor .map.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version to use for generated JavaScript]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Verze ECMAScriptu, která se má použít pro generovaný JavaScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compile on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Zkompilovat při uložení]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate declaration files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Generovat soubory deklarací]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compilation mode for .tsx files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Režim kompilace pro soubory .tsx]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Module system]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Systém modulů]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit on error]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Generování při chybě]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Allow implicit 'any' types]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Povolit implicitní typy any]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Keep comments in JavaScript output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ponechat komentáře ve výstupu JavaScriptu]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Generovat zdrojová mapování]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Verze ECMAScriptu]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;amd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[AMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[AMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;commonjs@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[CommonJS]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[CommonJS]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es3@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 3]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 3]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es5@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 5]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 5]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es6@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 6]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 6]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ne]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Žádný]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preserve@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Preserve JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Zachovat elementy JSX]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;react@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit React call for JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Vygenerovat volání React pro elementy JSX]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;system@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[System]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Systém]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ano]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;umd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[UMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[UMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ano]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Žádný]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ne]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ano]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ne]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ne]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ano]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ne]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ano]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ano]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ne]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Build TypeScriptu]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptbuild@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Build TypeScriptu]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptmaproot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that soucemaps while debugging will be located in the sourcemap root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Generuje sourcemapy tak, že se při ladění zdrojová mapování umístí do kořenového adresáře sourcemapů.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a different directory than sources]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Přesměruje výstup do jiného adresáře než zdrojový kód.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Přesměruje výstup do souboru.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that sources while debugging will be located in the source root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Generuje sourcemapy tak, že se při ladění zdrojový kód umístí do kořenového adresáře zdrojového kódu.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmaproot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Zadat kořenový adresář zdrojových mapování]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect JavaScript output to directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Přesměrovat výstup JavaScriptu do adresáře]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Combine JavaScript output into file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Kombinovat výstup JavaScriptu do souboru]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of TypeScript files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Zadat kořenový adresář souborů TypeScriptu]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,123 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\Debugger\TypeScriptDebugEngine\bin\Release\TypeScriptDebugEngine.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="cs-CZ" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScriptDebugEngine.TypeScriptResources.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";Document_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Document {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nepovedlo se přečíst dokument {0}: {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Error_decoding_sourcemap_contents" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Error decoding sourcemap contents.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Chyba při dekódování obsahu sourcemapu]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Invalid_sourcemap_url_0_for_script_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Invalid sourcemap url {0} for script {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Neplatná adresa URL sourcemapu {0} pro skript {1}]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Sourcemap_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[SourceMap {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nepovedlo se přečíst sourcemap {0}: {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_format_of_sourcemap" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported format of the sourcemap.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nepodporovaný formát sourcemapu]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_inline_sourcemap_format_specified_SourceMap_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported inline sourcemap format specified. SourceMap: {0}]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Zadal se nepodporovaný formát vloženého zdrojového mapování. SourceMap: {0}]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. Všechna práva vyhrazena.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,177 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\TypeScript.Tasks.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="cs-CZ" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScript.Tasks.Strings.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";CompilerLogNotSpecified" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[No compiler log specified, 'Clean' won't work.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Není zadaný protokol kompilátoru. Vyčištění nebude fungovat.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ConfigFileFoundOnDisk" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[This project is using one or more tsconfig.json files for the build that may not be properly used by IntelliSense. Please set the item type of each tsconfig.json file to TypeScriptCompile or Content to ensure they are used properly by the editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[V tomto projektu se pro sestavení používá jeden nebo více souborů tsconfig.json, které IntelliSense nemusí správně používat. Nastavte prosím typ položky všech souborů tsconfig.json na TypeScriptCompile nebo Content, aby je editor mohl správně používat.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorListBuildPrefix" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Build:]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Build:]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorWritingLog" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Failed to write compiler log to '{0}. Exception: '{1}']]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nepodařilo se napsat protokol kompilátoru do {0}. Výjimka: {1}]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FallbackVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Using compiler version ({0}), if this is incorrect change the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Používá se verze kompilátoru ({0}) pokud není správná, změňte v souboru projektu element <TypeScriptToolsVersion>.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LocatedReferenceFilesAt_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Located references file at: '{0}'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Našel se soubor odkazů v: {0}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NoCompilerError" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project file uses a different version of the TypeScript compiler and tools than is currently installed on this machine. No compiler was found at {0}. You may be able to fix this problem by changing the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Váš soubor projektu používá jinou verzi kompilátoru a nástrojů TypeScriptu, než jaká je právě nainstalovaná na tomto počítači. V {0} jsme nenašli žádný kompilátor. Tento problém možná opravíte změnou elementu <TypeScriptToolsVersion> v souboru projektu.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NodeNotFound" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[The build task could not find node.exe which is required to run the TypeScript compiler. Please install Node and ensure that the system path contains its location.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Úloha sestavení nemohla najít soubor node.exe, který se vyžaduje ke spuštění kompilátoru TypeScriptu. Nainstalujte prosím Node a ujistěte se, že systémová cesta obsahuje jeho umístění.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ToolsVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Couldn't locate the compiler version ({0}) specified in the project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nepovedlo se najít verzi kompilátoru ({0}) zadanou v souboru projektu.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptCompileBlockedSet" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript compile is skipped because the TypeScriptCompileBlocked property is set to 'true'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Kompilace TypeScriptu se přeskočila, protože vlastnost TypeScriptCompileBlocked je nastavená na true.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptNoVersionWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project does not specify a TypeScriptToolsVersion. The latest available TypeScript compiler will be used ({0}). To remove this warning, set TypeScriptToolsVersion to a specific version or "Latest" to always select the latest compiler.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Váš projekt neurčuje TypeScriptToolsVersion. Použije se nejnovější dostupný kompilátor TypeScriptu ({0}). Pokud chcete toto upozornění odebrat, nastavte TypeScriptToolsVersion na konkrétní verzi, nebo pokud chcete vždy vybrat nejnovější kompilátor, nastavte Latest.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptVersionMismatchWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project specifies TypeScriptToolsVersion {0}, but a matching compiler was not found. The latest available TypeScript compiler will be used ({1}). To remove this warning, install the TypeScript {0} SDK or update the value of TypeScriptToolsVersion.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Váš projekt určuje verzi TypeScriptToolsVersion {0}, ale nenašel se odpovídající kompilátor. Použije se nejnovější dostupný kompilátor TypeScriptu ({1}). Pokud chcete toto upozornění odebrat, nainstalujte sadu TypeScript {0} SDK nebo aktualizujte hodnotu TypeScriptToolsVersion.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. Všechna práva vyhrazena.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\ProjectItemsSchema.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="de-DE" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;ContentType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ContentType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript-Datei]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;ItemType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ItemType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript-Datei]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,195 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptCompile.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="de-DE" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;general@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[General]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Allgemein]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;copytooutputdirectory@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies if the file should be copied to the output folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Gibt an, ob die Datei in den Ausgabeordner kopiert werden soll.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies the action taken on this file when an app package is produced.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Legt die Aktion für diese Datei fest, wenn ein App-Paket erstellt wird.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;copytooutputdirectory@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy to Output Directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[In Ausgabeverzeichnis kopieren]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Package Action]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Paketaktion]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;always@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy always]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Immer kopieren]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;appxmanifest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[App Manifest]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[App-Manifest]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;content@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Content]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Inhalt]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;never@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Do not copy]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nicht kopieren]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Keine]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preservenewest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy if newer]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Kopieren, wenn neuer]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;priresource@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Resource]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ressource]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScriptCompile]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScriptCompile]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript-Datei]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript-Datei]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;fullpath@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Location of the file.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Speicherort der Datei.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Name of the file or folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Name der Datei oder des Ordners.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;fullpath@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Full Path]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Vollständiger Pfad]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[File Name]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Dateiname]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,492 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptProjectProperties.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="de-DE" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript-Build]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Recompile sources on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Quellen beim Speichern neu kompilieren]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate corresponding d.ts file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Entsprechende d.ts-Datei generieren]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify JSX code compilation mode for .tsx files, this doesn't affect .ts files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Gibt den JSX-Codekompilierungsmodus für TSX-Dateien an. Dies betrifft keine TS-Dateien.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[External module code generation target]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Externes Ziel für Modulcodegenerierung]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit outputs if any errors were reported]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ausgaben ausgeben, wenn Fehler gemeldet wurden]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Suppress warnings on expressions and declarations with an implied Any type]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Warnungen für Ausdrücke und Deklarationen mit impliziertem Any-Typ unterdrücken]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit comments to output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Kommentare in Ausgabe ausgeben]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generates corresponding .map file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Generiert die entsprechende .map-Datei]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version to use for generated JavaScript]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Für das generierte JavaScript zu verwendende ECMAScript-Version]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compile on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Beim Speichern kompilieren]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate declaration files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Deklarationsdateien generieren]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compilation mode for .tsx files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Kompilierungsmodus für TSX-Dateien]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Module system]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Modulsystem]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit on error]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Bei Fehler ausgeben]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Allow implicit 'any' types]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Implizite 'any'-Typen zulassen]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Keep comments in JavaScript output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Kommentare in JavaScript-Ausgabe beibehalten]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Quellzuordnungen generieren]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript-Version]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;amd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[AMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[AMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;commonjs@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[CommonJS]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[CommonJS]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es3@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 3]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 3]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es5@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 5]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 5]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es6@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 6]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 6]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nein]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Keine]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preserve@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Preserve JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[JSX-Elemente beibehalten]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;react@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit React call for JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[React-Aufruf für JSX-Elemente ausgeben]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;system@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[System]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[System]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ja]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;umd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[UMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[UMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ja]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Keine]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nein]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ja]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nein]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nein]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ja]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nein]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ja]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ja]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nein]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript-Build]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptbuild@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript-Build]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptmaproot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that soucemaps while debugging will be located in the sourcemap root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Gibt die Sourcemaps so aus, dass sich Sourcemaps beim Debuggen im Stamm der Sourcemap befinden]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a different directory than sources]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ausgabe in ein anderes Verzeichnis als die Quellen umleiten]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ausgabe in eine Datei umleiten]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that sources while debugging will be located in the source root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Gibt die Sourcemaps so aus, dass sich Quellen beim Debuggen im Quellstamm befinden]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmaproot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Stammverzeichnis von Quellzuordnungen angeben]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect JavaScript output to directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[JavaScript-Ausgabe in Verzeichnis umleiten]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Combine JavaScript output into file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[JavaScript-Ausgabe in Datei kombinieren]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of TypeScript files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Stammverzeichnis von TypeScript-Dateien angeben]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,123 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\Debugger\TypeScriptDebugEngine\bin\Release\TypeScriptDebugEngine.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="de-DE" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScriptDebugEngine.TypeScriptResources.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";Document_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Document {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Fehler beim Lesen von Dokument "{0}": {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Error_decoding_sourcemap_contents" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Error decoding sourcemap contents.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Fehler beim Decodieren von Sourcemapinhalten.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Invalid_sourcemap_url_0_for_script_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Invalid sourcemap url {0} for script {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Ungültige Sourcemap-URL {0} für das Skript "{1}".]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Sourcemap_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[SourceMap {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Fehler beim Lesen von "SourceMap" {0}: {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_format_of_sourcemap" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported format of the sourcemap.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nicht unterstütztes Format der Sourcemap.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_inline_sourcemap_format_specified_SourceMap_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported inline sourcemap format specified. SourceMap: {0}]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Es wurde ein nicht unterstütztes Inline-Quellzuordnungsformat angegeben. "SourceMap": {0}]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript-Debug-Engine]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. Alle Rechte vorbehalten.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript-Debug-Engine]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,177 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\TypeScript.Tasks.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="de-DE" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScript.Tasks.Strings.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";CompilerLogNotSpecified" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[No compiler log specified, 'Clean' won't work.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Es wurde kein Compilerprotokoll angegeben. "Bereinigen" funktioniert nicht.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ConfigFileFoundOnDisk" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[This project is using one or more tsconfig.json files for the build that may not be properly used by IntelliSense. Please set the item type of each tsconfig.json file to TypeScriptCompile or Content to ensure they are used properly by the editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Für dieses Projekt wird mindestens eine tsconfig.json-Datei für den Build verwendet, die möglicherweise nicht ordnungsgemäß von IntelliSense verwendet wird. Legen Sie den Elementtyp jeder tsconfig.json-Datei auf "TypeScriptCompile" oder "Content" fest, um sicherzustellen, dass sie vom Editor ordnungsgemäß verwendet werden.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorListBuildPrefix" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Build:]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Build:]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorWritingLog" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Failed to write compiler log to '{0}. Exception: '{1}']]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Fehler beim Schreiben des Compilerprotokolls in "{0}". Ausnahme: "{1}"]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FallbackVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Using compiler version ({0}), if this is incorrect change the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Die Compilerversion ({0}) wird verwendet. Wenn diese falsch ist, ändern Sie das <TypeScriptToolsVersion>-Element in Ihrer Projektdatei.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LocatedReferenceFilesAt_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Located references file at: '{0}'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Verweisdatei wurde gefunden unter: "{0}".]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NoCompilerError" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project file uses a different version of the TypeScript compiler and tools than is currently installed on this machine. No compiler was found at {0}. You may be able to fix this problem by changing the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Die Projektdatei verwendet eine andere Version des TypeScript-Compilers und der TypeScript-Tools als die auf diesem Computer installierte Version. Es wurde kein Compiler unter {0} gefunden. Möglicherweise können Sie dieses Problem beheben, indem Sie das <TypeScriptToolsVersion>-Element in der Projektdatei ändern.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NodeNotFound" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[The build task could not find node.exe which is required to run the TypeScript compiler. Please install Node and ensure that the system path contains its location.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Die Datei "node.exe" wurde von der Buildaufgabe nicht gefunden. Diese ist zum Ausführen des TypeScript-Compilers erforderlich. Installieren Sie Node, und stellen Sie sicher, dass der Systempfad den Speicherort enthält.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ToolsVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Couldn't locate the compiler version ({0}) specified in the project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Die in der Projektdatei angegebene Compilerversion ({0}) wurde nicht gefunden.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptCompileBlockedSet" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript compile is skipped because the TypeScriptCompileBlocked property is set to 'true'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Die TypeScript-Kompilierung wird übersprungen, weil die Eigenschaft "TypeScriptCompileBlocked" auf "true" festgelegt ist.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptNoVersionWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project does not specify a TypeScriptToolsVersion. The latest available TypeScript compiler will be used ({0}). To remove this warning, set TypeScriptToolsVersion to a specific version or "Latest" to always select the latest compiler.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Ihr Projekt gibt keine "TypeScriptToolsVersion" an. Der neueste verfügbare TypeScript-Compiler wird verwendet ({0}). Legen Sie für "TypeScriptToolsVersion" eine spezifische Version oder "Latest" fest, um diese Warnung zu entfernen.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptVersionMismatchWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project specifies TypeScriptToolsVersion {0}, but a matching compiler was not found. The latest available TypeScript compiler will be used ({1}). To remove this warning, install the TypeScript {0} SDK or update the value of TypeScriptToolsVersion.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Ihr Projekt gibt TypeScriptToolsVersion {0} an, ein übereistimmender Compiler wurde jedoch nicht gefunden. Der neueste verfügbare TypeScript-Compiler wird verwendet ({1}). Installieren Sie das TypeScript {0}-SDK, oder aktualisieren Sie den Wert von TypeScriptToolsVersion, um diese Warnung zu entfernen.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript-Buildaufgaben]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. Alle Rechte vorbehalten.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript-Buildaufgaben]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\ProjectItemsSchema.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="es-ES" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;ContentType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ContentType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Archivo TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;ItemType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ItemType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Archivo TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,195 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptCompile.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="es-ES" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;general@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[General]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[General]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;copytooutputdirectory@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies if the file should be copied to the output folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Especifica si el archivo debe copiarse en la carpeta de salida.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies the action taken on this file when an app package is produced.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Especifica la acción realizada en este archivo cuando se crea un paquete de aplicaciones.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;copytooutputdirectory@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy to Output Directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Copiar en el directorio de salida]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Package Action]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Acción de paquete]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;always@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy always]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Copiar siempre]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;appxmanifest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[App Manifest]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Manifiesto de la aplicación]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;content@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Content]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Contenido]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;never@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Do not copy]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[No copiar]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ninguno]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preservenewest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy if newer]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Copiar si es posterior]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;priresource@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Resource]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Recurso]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScriptCompile]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScriptCompile]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Archivo TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Archivo TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;fullpath@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Location of the file.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ubicación del archivo.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Name of the file or folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nombre del archivo o carpeta.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;fullpath@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Full Path]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ruta de acceso completa]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[File Name]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nombre de archivo]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,492 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptProjectProperties.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="es-ES" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Compilación de TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Recompile sources on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Vuelve a compilar los orígenes al guardar.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate corresponding d.ts file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Genera el archivo d.ts correspondiente.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify JSX code compilation mode for .tsx files, this doesn't affect .ts files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Especificar el modo de compilación del código JSX para los archivos .tsx. Esto no afecta a los archivos .ts.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[External module code generation target]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Destino de generación del código del módulo externo.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit outputs if any errors were reported]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Emitir salidas si se informa de algún error]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Suppress warnings on expressions and declarations with an implied Any type]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Suprime las advertencias cuando existen expresiones y declaraciones con un tipo "any" implícito.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit comments to output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Emite comentarios en los resultados.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generates corresponding .map file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Genera el archivo .map correspondiente.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version to use for generated JavaScript]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Versión de ECMAScript que se usará con el JavaScript generado.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compile on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Compilar al guardar]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate declaration files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Generar archivos de declaración]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compilation mode for .tsx files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Modo de compilación para archivos .tsx]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Module system]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sistema de módulos]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit on error]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Emitir cuando haya error]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Allow implicit 'any' types]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Permitir tipos "any" implícitos]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Keep comments in JavaScript output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Mantener comentarios en los resultados de JavaScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Generar mapas de origen]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Versión de ECMAScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;amd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[AMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[AMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;commonjs@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[CommonJS]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[CommonJS]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es3@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 3]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 3]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es5@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 5]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 5]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es6@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 6]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 6]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[No]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ninguno]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preserve@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Preserve JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Conservar elementos JSX]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;react@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit React call for JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Emitir llamada de React para los elementos JSX]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;system@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[System]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sistema]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sí]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;umd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[UMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[UMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sí]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ninguno]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[No]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sí]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[No]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[No]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sí]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[No]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sí]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sí]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[No]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Compilación de TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptbuild@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Compilación de TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptmaproot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that soucemaps while debugging will be located in the sourcemap root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Emite los mapas de origen de modo que, durante la depuración, se ubiquen en el directorio raíz de los mapas de origen.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a different directory than sources]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Redirige los resultados a un directorio diferente del de los orígenes.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Redirige los resultados a un archivo.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that sources while debugging will be located in the source root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Emite los mapas de origen de modo que, durante la depuración, los orígenes se ubiquen en el directorio raíz de origen.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmaproot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Especificar el directorio raíz de los mapas de origen]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect JavaScript output to directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Redirigir resultados de JavaScript al directorio]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Combine JavaScript output into file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Combinar resultados de JavaScript en archivo]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of TypeScript files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Especificar el directorio raíz de los archivos TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,123 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\Debugger\TypeScriptDebugEngine\bin\Release\TypeScriptDebugEngine.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="es-ES" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScriptDebugEngine.TypeScriptResources.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";Document_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Document {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Error al leer el documento {0}: {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Error_decoding_sourcemap_contents" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Error decoding sourcemap contents.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Error al descodificar el contenido del mapa de origen.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Invalid_sourcemap_url_0_for_script_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Invalid sourcemap url {0} for script {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Dirección URL del mapa de origen {0} no válida para el script {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Sourcemap_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[SourceMap {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Error al leer el mapa de origen {0}: {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_format_of_sourcemap" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported format of the sourcemap.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Formato no compatible del mapa de origen.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_inline_sourcemap_format_specified_SourceMap_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported inline sourcemap format specified. SourceMap: {0}]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Se especificó un formato de mapa de origen insertado no válido. Mapa de origen: {0}]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Motor de depuración de TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. Todos los derechos reservados.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Motor de depuración de TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,177 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\TypeScript.Tasks.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="es-ES" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScript.Tasks.Strings.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";CompilerLogNotSpecified" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[No compiler log specified, 'Clean' won't work.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[No se ha especificado el registro del compilador. La opción 'Limpiar' no funcionará.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ConfigFileFoundOnDisk" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[This project is using one or more tsconfig.json files for the build that may not be properly used by IntelliSense. Please set the item type of each tsconfig.json file to TypeScriptCompile or Content to ensure they are used properly by the editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Este proyecto usa uno o varios archivos tsconfig.json para la compilación que IntelliSense no puede usar correctamente. Establezca el tipo de elemento de cada archivo tsconfig.json en TypeScriptCompile o en Contenido para asegurarse de que el editor lo use correctamente.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorListBuildPrefix" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Build:]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Compilación:]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorWritingLog" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Failed to write compiler log to '{0}. Exception: '{1}']]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[No se pudo escribir el registro del compilador en '{0}'. Excepción: '{1}']]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FallbackVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Using compiler version ({0}), if this is incorrect change the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Se está usando la versión {0} del compilador. Si no es correcta, cambie el elemento <TypeScriptToolsVersion> en el archivo del proyecto.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LocatedReferenceFilesAt_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Located references file at: '{0}'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Archivo de referencias encontrado en: '{0}'.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NoCompilerError" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project file uses a different version of the TypeScript compiler and tools than is currently installed on this machine. No compiler was found at {0}. You may be able to fix this problem by changing the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[El archivo del proyecto usa una versión de las herramientas y el compilador de TypeScript distinta a la instalada actualmente en esta máquina. No se ha encontrado ningún compilador en {0}. Puede corregir este problema cambiando el elemento <TypeScriptToolsVersion> en el archivo del proyecto.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NodeNotFound" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[The build task could not find node.exe which is required to run the TypeScript compiler. Please install Node and ensure that the system path contains its location.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[La tarea de compilación no encontró node.exe, que es necesario para ejecutar el compilador de TypeScript. Instale Node y asegúrese de que la ruta de acceso del sistema contiene su ubicación.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ToolsVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Couldn't locate the compiler version ({0}) specified in the project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[No se encuentra la versión del compilador ({0}) especificada en el archivo del proyecto.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptCompileBlockedSet" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript compile is skipped because the TypeScriptCompileBlocked property is set to 'true'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[La compilación de TypeScript se omite porque la propiedad TypeScriptCompileBlocked está establecida en 'true'.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptNoVersionWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project does not specify a TypeScriptToolsVersion. The latest available TypeScript compiler will be used ({0}). To remove this warning, set TypeScriptToolsVersion to a specific version or "Latest" to always select the latest compiler.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[El proyecto no especifica un valor de TypeScriptToolsVersion. Se usará el último compilador de TypeScript disponible ({0}). Para quitar esta advertencia, establezca TypeScriptToolsVersion en una versión específica o "Más reciente" para seleccionar siempre el último compilador.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptVersionMismatchWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project specifies TypeScriptToolsVersion {0}, but a matching compiler was not found. The latest available TypeScript compiler will be used ({1}). To remove this warning, install the TypeScript {0} SDK or update the value of TypeScriptToolsVersion.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[El proyecto especifica la versión {0} de TypeScriptToolsVersion, pero no se ha encontrado un compilador coincidente. Se usará el último compilador de TypeScript disponible ({1}). Para quitar esta advertencia, instale el SDK de TypeScript {0} o actualice el valor de TypeScriptToolsVersion.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Tareas de compilación de TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. Todos los derechos reservados.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Tareas de compilación de TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\ProjectItemsSchema.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="fr-FR" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;ContentType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ContentType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Fichier TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;ItemType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ItemType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Fichier TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,195 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptCompile.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="fr-FR" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;general@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[General]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Général]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;copytooutputdirectory@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies if the file should be copied to the output folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Précise si le fichier doit être copié dans le dossier de sortie.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies the action taken on this file when an app package is produced.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Spécifie l'action effectuée sur ce fichier lorsqu'un package d'application est produit.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;copytooutputdirectory@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy to Output Directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Copier dans le répertoire de sortie]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Package Action]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Action de package]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;always@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy always]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Toujours copier]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;appxmanifest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[App Manifest]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Manifeste d'application]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;content@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Content]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Contenu]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;never@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Do not copy]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ne pas copier]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Aucun]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preservenewest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy if newer]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Copier si plus récent]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;priresource@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Resource]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ressource]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScriptCompile]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScriptCompile]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Fichier TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Fichier TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;fullpath@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Location of the file.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Emplacement du fichier.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Name of the file or folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nom du fichier ou du dossier.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;fullpath@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Full Path]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Chemin d'accès complet]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[File Name]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nom de fichier]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,492 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptProjectProperties.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="fr-FR" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Build TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Recompile sources on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Recompiler les sources lors de l'enregistrement]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate corresponding d.ts file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Générer le fichier d.ts correspondant]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify JSX code compilation mode for .tsx files, this doesn't affect .ts files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Spécifiez le mode de compilation du code JSX pour les fichiers .tsx. Ceci n'affecte pas les fichiers .ts]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[External module code generation target]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Cible de génération de code de module externe]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit outputs if any errors were reported]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Émettre des sorties si des erreurs sont signalées]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Suppress warnings on expressions and declarations with an implied Any type]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Supprimer les avertissements en cas d'expressions et de déclarations possédant un type 'any' implicite]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit comments to output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Publier des commentaires dans la sortie]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generates corresponding .map file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Générer le fichier .map correspondant]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version to use for generated JavaScript]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Version ECMAScript à utiliser pour le code JavaScript généré]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compile on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Compiler lors de l'enregistrement]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate declaration files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Générer des fichiers de déclaration]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compilation mode for .tsx files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Mode de compilation pour les fichiers .tsx]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Module system]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Système de module]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit on error]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Émettre lors d'une erreur]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Allow implicit 'any' types]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Autoriser les types 'any' implicites]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Keep comments in JavaScript output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Conserver les commentaires dans la sortie JavaScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Générer des mappages de sources]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Version ECMAScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;amd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[AMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[AMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;commonjs@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[CommonJS]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[CommonJS]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es3@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 3]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 3]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es5@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 5]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 5]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es6@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 6]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 6]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Non]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Aucun]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preserve@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Preserve JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Préserver les éléments JSX]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;react@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit React call for JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Émettre un appel React pour les éléments JSX]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;system@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[System]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Système]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Oui]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;umd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[UMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[UMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Oui]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Aucun]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Non]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Oui]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Non]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Non]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Oui]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Non]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Oui]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Oui]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Non]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Build TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptbuild@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Build TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptmaproot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that soucemaps while debugging will be located in the sourcemap root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Publie les mappages de sources pour qu'ils se trouvent à la racine pendant le débogage]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a different directory than sources]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Rediriger la sortie vers un autre répertoire que les sources]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Rediriger la sortie vers un fichier]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that sources while debugging will be located in the source root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Publie les mappages de sources pour que les sources se trouvent à la racine pendant le débogage]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmaproot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Spécifier le répertoire racine des mappages de sources]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect JavaScript output to directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Rediriger la sortie JavaScript vers un répertoire]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Combine JavaScript output into file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Combiner la sortie JavaScript dans un fichier]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of TypeScript files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Spécifier le répertoire racine des fichiers TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,123 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\Debugger\TypeScriptDebugEngine\bin\Release\TypeScriptDebugEngine.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="fr-FR" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScriptDebugEngine.TypeScriptResources.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";Document_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Document {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Échec de la lecture du document {0} : {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Error_decoding_sourcemap_contents" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Error decoding sourcemap contents.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Erreur de décodage du contenu du mappage de source.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Invalid_sourcemap_url_0_for_script_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Invalid sourcemap url {0} for script {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[URL de mappage de source {0} non valide pour le script {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Sourcemap_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[SourceMap {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Échec de la lecture du SourceMap {0} : {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_format_of_sourcemap" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported format of the sourcemap.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Format de mappage de source non pris en charge.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_inline_sourcemap_format_specified_SourceMap_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported inline sourcemap format specified. SourceMap: {0}]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Le format de mappage de source inline spécifié n'est pas pris en charge. SourceMap : {0}]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Moteur de débogage TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. Tous droits réservés.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Moteur de débogage TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,177 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\TypeScript.Tasks.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="fr-FR" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScript.Tasks.Strings.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";CompilerLogNotSpecified" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[No compiler log specified, 'Clean' won't work.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Aucun journal de compilation spécifié, 'Clean' ne fonctionnera pas.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ConfigFileFoundOnDisk" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[This project is using one or more tsconfig.json files for the build that may not be properly used by IntelliSense. Please set the item type of each tsconfig.json file to TypeScriptCompile or Content to ensure they are used properly by the editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Ce projet utilise pour la build un ou plusieurs fichiers tsconfig.json qui ne sont peut-être pas correctement utilisés par IntelliSense. Définissez le type d'élément de chaque fichier tsconfig.json sur TypeScriptCompile ou sur Content pour qu'ils soient correctement utilisés par l'éditeur.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorListBuildPrefix" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Build:]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Build :]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorWritingLog" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Failed to write compiler log to '{0}. Exception: '{1}']]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Échec de l'écriture du journal de compilation dans '{0}'. Exception : '{1}']]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FallbackVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Using compiler version ({0}), if this is incorrect change the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Utilisation de la version de compilateur ({0}). Si cela est incorrect, remplacez l'élément <TypeScriptToolsVersion> dans votre fichier projet.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LocatedReferenceFilesAt_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Located references file at: '{0}'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Localisation des fichiers de référence : '{0}'.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NoCompilerError" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project file uses a different version of the TypeScript compiler and tools than is currently installed on this machine. No compiler was found at {0}. You may be able to fix this problem by changing the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Votre fichier projet utilise une version du compilateur TypeScript et des outils qui diffère de celle installée sur cette machine. Aucun compilateur n'a été détecté sur {0}. Vous pouvez peut-être résoudre ce problème en changeant l'élément <TypeScriptToolsVersion> dans votre fichier projet.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NodeNotFound" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[The build task could not find node.exe which is required to run the TypeScript compiler. Please install Node and ensure that the system path contains its location.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[La tâche de build n'a pas pu localiser le fichier node.exe, qui est indispensable à l'exécution du compilateur TypeScript. Installez Node, puis vérifiez que le chemin système contient son emplacement.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ToolsVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Couldn't locate the compiler version ({0}) specified in the project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[La version de compilateur ({0}) spécifiée dans le fichier projet est introuvable.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptCompileBlockedSet" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript compile is skipped because the TypeScriptCompileBlocked property is set to 'true'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[La compilation TypeScript est ignorée, car la propriété TypeScriptCompileBlocked a la valeur 'true'.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptNoVersionWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project does not specify a TypeScriptToolsVersion. The latest available TypeScript compiler will be used ({0}). To remove this warning, set TypeScriptToolsVersion to a specific version or "Latest" to always select the latest compiler.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Votre projet ne spécifie pas TypeScriptToolsVersion. Le dernier compilateur TypeScript disponible va être utilisé ({0}). Pour supprimer cet avertissement, affectez une version spécifique ou la valeur "Latest" à TypeScriptToolsVersion afin de sélectionner toujours la dernière version du compilateur.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptVersionMismatchWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project specifies TypeScriptToolsVersion {0}, but a matching compiler was not found. The latest available TypeScript compiler will be used ({1}). To remove this warning, install the TypeScript {0} SDK or update the value of TypeScriptToolsVersion.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Votre projet spécifie TypeScriptToolsVersion {0}, mais le compilateur correspondant est introuvable. Le dernier compilateur TypeScript disponible va être utilisé ({1}). Pour supprimer cet avertissement, installez le SDK TypeScript {0} ou mettez à jour la valeur de TypeScriptToolsVersion.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Tâches de build TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. Tous droits réservés.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Tâches de build TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\ProjectItemsSchema.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="it-IT" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;ContentType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ContentType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[File TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;ItemType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ItemType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[File TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,195 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptCompile.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="it-IT" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;general@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[General]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Generale]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;copytooutputdirectory@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies if the file should be copied to the output folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Specifica se il file deve essere copiato nella cartella di output.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies the action taken on this file when an app package is produced.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Specifica l'azione eseguita su questo file quando viene prodotto un pacchetto dell'app.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;copytooutputdirectory@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy to Output Directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Copia nella directory di output]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Package Action]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Azione pacchetto]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;always@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy always]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Copia sempre]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;appxmanifest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[App Manifest]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Manifesto dell'app]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;content@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Content]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Contenuto]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;never@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Do not copy]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Non copiare]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nessuna]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preservenewest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy if newer]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Copia se più recente]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;priresource@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Resource]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Risorsa]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScriptCompile]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScriptCompile]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[File TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[File TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;fullpath@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Location of the file.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Percorso del file.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Name of the file or folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nome del file o della cartella.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;fullpath@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Full Path]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Percorso completo]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[File Name]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nome file]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,492 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptProjectProperties.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="it-IT" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Compilazione TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Recompile sources on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ricompila le origini al salvataggio]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate corresponding d.ts file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Genera il file d.ts corrispondente]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify JSX code compilation mode for .tsx files, this doesn't affect .ts files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Consente di specificare la modalità di compilazione del codice JSX per i file con estensione tsx. Non ha effetto sui file con estensione ts]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[External module code generation target]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Destinazione di generazione di codice del modulo esterno]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit outputs if any errors were reported]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Crea gli output se sono stati restituiti errori]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Suppress warnings on expressions and declarations with an implied Any type]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Non visualizza avvisi per espressioni e dichiarazioni con un tipo Any implicito]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit comments to output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Crea commenti nell'output]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generates corresponding .map file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Genera il file .map corrispondente]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version to use for generated JavaScript]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Versione ECMAScript da usare per il codice JavaScript generato]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compile on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Compila al salvataggio]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate declaration files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Genera file di dichiarazione]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compilation mode for .tsx files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Modalità di compilazione per file con estensione tsx]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Module system]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sistema moduli]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit on error]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Crea in caso di errore]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Allow implicit 'any' types]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Consenti tipi 'any' impliciti]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Keep comments in JavaScript output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Mantieni commenti nell'output JavaScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Genera mapping di origine]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Versione ECMAScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;amd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[AMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[AMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;commonjs@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[CommonJS]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[CommonJS]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es3@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 3]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 3]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es5@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 5]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 5]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es6@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 6]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 6]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[No]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nessuna]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preserve@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Preserve JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Mantieni elementi JSX]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;react@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit React call for JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Crea chiamata React per elementi JSX]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;system@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[System]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sistema]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sì]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;umd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[UMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[UMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sì]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nessuno]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[No]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sì]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[No]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[No]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sì]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[No]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sì]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sì]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[No]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Compilazione TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptbuild@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Compilazione TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptmaproot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that soucemaps while debugging will be located in the sourcemap root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Crea i mapping di origine in modo che durante il debug si trovino nella radice dei mapping di origine]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a different directory than sources]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Reindirizza l'output a una directory diversa dalle origini]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Reindirizza l'output a un file]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that sources while debugging will be located in the source root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Crea i mapping di origine in modo che durante il debug le origini si trovino nella radice delle origini]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmaproot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Specifica la directory radice dei mapping di origine]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect JavaScript output to directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Reindirizza l'output JavaScript a una directory]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Combine JavaScript output into file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Combina l'output JavaScript nel file]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of TypeScript files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Specifica la directory radice dei file TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,123 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\Debugger\TypeScriptDebugEngine\bin\Release\TypeScriptDebugEngine.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="it-IT" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScriptDebugEngine.TypeScriptResources.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";Document_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Document {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[La lettura del documento {0} non è riuscita: {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Error_decoding_sourcemap_contents" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Error decoding sourcemap contents.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Errore durante la decodifica del contenuto del mapping di origine.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Invalid_sourcemap_url_0_for_script_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Invalid sourcemap url {0} for script {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[L'URL del mapping di origine {0} non è valido per lo script {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Sourcemap_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[SourceMap {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[La lettura del mapping di origine {0} non è riuscita: {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_format_of_sourcemap" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported format of the sourcemap.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Il formato del mapping di origine non è supportato.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_inline_sourcemap_format_specified_SourceMap_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported inline sourcemap format specified. SourceMap: {0}]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Il formato specificato per il mapping di origine incorporato non è supportato. Mapping di origine: {0}]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Motore di debug TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. Tutti i diritti sono riservati.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Motore di debug TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,177 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\TypeScript.Tasks.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="it-IT" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScript.Tasks.Strings.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";CompilerLogNotSpecified" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[No compiler log specified, 'Clean' won't work.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Non è stato specificato alcun log del compilatore. Il comando 'Pulisci' non funzionerà.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ConfigFileFoundOnDisk" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[This project is using one or more tsconfig.json files for the build that may not be properly used by IntelliSense. Please set the item type of each tsconfig.json file to TypeScriptCompile or Content to ensure they are used properly by the editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Per la compilazione questo progetto usa uno o più file tsconfig.json che potrebbero non essere usati correttamente da IntelliSense. Impostare il tipo di elemento di ogni file tsconfig.json su TypeScriptCompile o Content per verificare che siano usati correttamente dall'editor.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorListBuildPrefix" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Build:]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Compilazione:]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorWritingLog" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Failed to write compiler log to '{0}. Exception: '{1}']]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Non è stato possibile scrivere il log del compilatore in '{0}'. Eccezione: '{1}']]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FallbackVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Using compiler version ({0}), if this is incorrect change the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Se si usa una versione non corretta del compilatore ({0}), modificare l'elemento <TypeScriptToolsVersion> nel file di progetto.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LocatedReferenceFilesAt_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Located references file at: '{0}'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Il file dei riferimenti si trova in '{0}'.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NoCompilerError" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project file uses a different version of the TypeScript compiler and tools than is currently installed on this machine. No compiler was found at {0}. You may be able to fix this problem by changing the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Il file di progetto usa una versione diversa del compilatore TypeScript e strumenti diversi da quelli installati in questo computer. Non è stato trovato alcun compilatore in {0}. Per provare a risolvere questo problema, modificare l'elemento <TypeScriptToolsVersion> nel file di progetto.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NodeNotFound" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[The build task could not find node.exe which is required to run the TypeScript compiler. Please install Node and ensure that the system path contains its location.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[L'attività di compilazione non è riuscita a trovare node.exe che è necessario per eseguire il compilatore TypeScript. Installare Node e assicurarsi che il percorso di sistema ne contenga la posizione.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ToolsVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Couldn't locate the compiler version ({0}) specified in the project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[La versione del compilatore ({0}) specificata nel file di progetto non è stata trovata.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptCompileBlockedSet" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript compile is skipped because the TypeScriptCompileBlocked property is set to 'true'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[La compilazione TypeScript è stata ignorata perché la proprietà TypeScriptCompileBlocked è impostata su 'true'.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptNoVersionWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project does not specify a TypeScriptToolsVersion. The latest available TypeScript compiler will be used ({0}). To remove this warning, set TypeScriptToolsVersion to a specific version or "Latest" to always select the latest compiler.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nel progetto non è specificata alcun elemento TypeScriptToolsVersion. Verrà usata la versione disponibile più recente del compilatore TypeScript ({0}). Per rimuovere questo avviso, impostare TypeScriptToolsVersion su una versione specifica o su "Latest" in modo che venga selezionato sempre il compilatore più recente.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptVersionMismatchWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project specifies TypeScriptToolsVersion {0}, but a matching compiler was not found. The latest available TypeScript compiler will be used ({1}). To remove this warning, install the TypeScript {0} SDK or update the value of TypeScriptToolsVersion.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nel progetto è specificato TypeScriptToolsVersion {0}, ma non è stato trovato un compilatore corrispondente. Verrà usata la versione disponibile più recente del compilatore TypeScript ({1}). Per rimuovere questo avviso, installare TypeScript {0} SDK o aggiornare il valore di TypeScriptToolsVersion.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Attività di compilazione TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. Tutti i diritti sono riservati.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Attività di compilazione TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\ProjectItemsSchema.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="ja-JP" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;ContentType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ContentType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript ファイル]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;ItemType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ItemType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript ファイル]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,195 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptCompile.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="ja-JP" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;general@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[General]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[全般]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;copytooutputdirectory@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies if the file should be copied to the output folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ファイルを出力フォルダーにコピーするかどうかを指定します。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies the action taken on this file when an app package is produced.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[アプリケーション パッケージが生成されたときにこのファイルに実行するアクションを指定します。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;copytooutputdirectory@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy to Output Directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[出力ディレクトリにコピー]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Package Action]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[パッケージ アクション]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;always@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy always]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[常にコピーする]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;appxmanifest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[App Manifest]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[アプリケーション マニフェスト]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;content@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Content]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[コンテンツ]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;never@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Do not copy]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[コピーしない]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[なし]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preservenewest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy if newer]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[新しい場合はコピーする]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;priresource@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Resource]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[リソース]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScriptCompile]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScriptCompile]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript ファイル]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript ファイル]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;fullpath@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Location of the file.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ファイルの場所です。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Name of the file or folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ファイルまたはフォルダーの名前です。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;fullpath@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Full Path]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[完全パス]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[File Name]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ファイル名]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,492 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptProjectProperties.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="ja-JP" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript ビルド]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Recompile sources on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[保存時にソースを再コンパイルする]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate corresponding d.ts file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[対応する d.ts ファイルを生成する]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify JSX code compilation mode for .tsx files, this doesn't affect .ts files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[.tsx ファイルの JSX コード コンパイル モードを指定します。.ts ファイルへの影響はありません]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[External module code generation target]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[外部モジュールコード生成ターゲット]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit outputs if any errors were reported]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[エラーが報告された場合は常に出力を発行します]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Suppress warnings on expressions and declarations with an implied Any type]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[暗黙的な Any 型を含む式と宣言に関する警告を表示しない]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit comments to output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[コメントを出力する]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generates corresponding .map file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[対応する .map ファイルを生成する]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version to use for generated JavaScript]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[生成された JavaScript に使用するECMAScript バージョン]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compile on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[保存時にコンパイルする]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate declaration files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[宣言ファイルを生成する]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compilation mode for .tsx files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[.tsx ファイルのコンパイル モード]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Module system]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[モジュール システム]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit on error]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[エラー時に発行]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Allow implicit 'any' types]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[暗黙的な 'any' 型を許可する]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Keep comments in JavaScript output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[JavaScript 出力にコメントを残す]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ソース マップを生成する]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript バージョン]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;amd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[AMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[AMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;commonjs@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[CommonJS]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[CommonJS]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es3@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 3]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 3]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es5@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 5]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 5]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es6@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 6]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 6]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[いいえ]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[なし]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preserve@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Preserve JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[JSX 要素の保持]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;react@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit React call for JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[JSX 要素の反応呼び出しを生成]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;system@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[System]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[システム]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[はい]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;umd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[UMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[UMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[はい]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[なし]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[いいえ]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[はい]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[いいえ]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[いいえ]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[はい]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[いいえ]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[はい]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[はい]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[いいえ]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript ビルド]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptbuild@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript ビルド]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptmaproot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that soucemaps while debugging will be located in the sourcemap root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[デバッグ中のソースマップがソースマップ ルートに配置されるようにソースマップを出力する]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a different directory than sources]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[出力をソース以外のディレクトリにリダイレクトする]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[出力をファイルにリダイレクトする]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that sources while debugging will be located in the source root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[デバッグ中のソースがソース ルートに配置されるようにソースマップを出力する]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmaproot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ソース マップのルート ディレクトリを指定する]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect JavaScript output to directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[JavaScript 出力をディレクトリにリダイレクトする]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Combine JavaScript output into file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[JavaScript 出力をファイルにまとめる]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of TypeScript files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript ファイルのルート ディレクトリを指定する]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,123 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\Debugger\TypeScriptDebugEngine\bin\Release\TypeScriptDebugEngine.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="ja-JP" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScriptDebugEngine.TypeScriptResources.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";Document_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Document {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[ドキュメント {0} の読み込みに失敗しました: {1}。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Error_decoding_sourcemap_contents" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Error decoding sourcemap contents.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[ソースマップ コンテンツのデコード中にエラーが発生しました。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Invalid_sourcemap_url_0_for_script_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Invalid sourcemap url {0} for script {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[スクリプト {1} のソースマップ URL {0} が正しくありません。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Sourcemap_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[SourceMap {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[ソースマップ {0} の読み取りに失敗しました: {1}。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_format_of_sourcemap" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported format of the sourcemap.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[サポートされていない形式のソースマップです。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_inline_sourcemap_format_specified_SourceMap_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported inline sourcemap format specified. SourceMap: {0}]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[サポートされていないインライン ソースマップの形式が指定されました。ソースマップ: {0}]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript デバッグ エンジン]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript デバッグ エンジン]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,177 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\TypeScript.Tasks.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="ja-JP" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScript.Tasks.Strings.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";CompilerLogNotSpecified" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[No compiler log specified, 'Clean' won't work.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[コンパイラのログが指定されていません。'クリーン' は機能しません。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ConfigFileFoundOnDisk" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[This project is using one or more tsconfig.json files for the build that may not be properly used by IntelliSense. Please set the item type of each tsconfig.json file to TypeScriptCompile or Content to ensure they are used properly by the editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[このプロジェクトでは、IntelliSense で適切に使用されない可能性のあるビルド用の tsconfig.json ファイルが 1 つ以上使用されています。各 tsconfig.json ファイルの項目の種類を TypeScriptCompile または Content に設定して、エディターで正しく使用できるようにしてください。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorListBuildPrefix" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Build:]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[ビルド:]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorWritingLog" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Failed to write compiler log to '{0}. Exception: '{1}']]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[コンパイラのログを '{0} に書き込めませんでした。例外: '{1}']]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FallbackVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Using compiler version ({0}), if this is incorrect change the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[このコンパイラのバージョン ({0}) の使用が正しくない場合、プロジェクト ファイルの <TypeScriptToolsVersion> 要素を変更します。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LocatedReferenceFilesAt_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Located references file at: '{0}'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA['{0}' で参照ファイルが見つかりました。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NoCompilerError" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project file uses a different version of the TypeScript compiler and tools than is currently installed on this machine. No compiler was found at {0}. You may be able to fix this problem by changing the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[プロジェクト ファイルでは、このコンピューターに現在インストールされているものとは異なるバージョンの TypeScript コンパイラおよびツールが使用されています。コンパイラは {0} で見つかりませんでした。この問題はプロジェクト ファイルの <TypeScriptToolsVersion> 要素を変更して解決できることがあります。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NodeNotFound" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[The build task could not find node.exe which is required to run the TypeScript compiler. Please install Node and ensure that the system path contains its location.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[ビルド タスクは TypeScript コンパイラの実行に必要な node.exe を見つけることができませんでした。Node をインストールし、その場所がシステム パスに含まれていることをご確認ください。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ToolsVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Couldn't locate the compiler version ({0}) specified in the project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[プロジェクト ファイルに指定されているコンパイラ バージョン ({0}) が見つかりませんでした。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptCompileBlockedSet" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript compile is skipped because the TypeScriptCompileBlocked property is set to 'true'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScriptCompileBlocked プロパティが 'true' に設定されているため、TypeScript のコンパイルはスキップされました。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptNoVersionWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project does not specify a TypeScriptToolsVersion. The latest available TypeScript compiler will be used ({0}). To remove this warning, set TypeScriptToolsVersion to a specific version or "Latest" to always select the latest compiler.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[このプロジェクトでは TypeScriptToolsVersion が指定されていません。使用可能な最新バージョンの TypeScript コンパイラが使われます ({0})。この警告を削除するには、TypeScriptToolsVersion に特定のバージョンを設定するか、常に最新のコンパイラを選択するために "Latest" を設定してください。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptVersionMismatchWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project specifies TypeScriptToolsVersion {0}, but a matching compiler was not found. The latest available TypeScript compiler will be used ({1}). To remove this warning, install the TypeScript {0} SDK or update the value of TypeScriptToolsVersion.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[このプロジェクトでは TypeScriptToolsVersion {0} が指定されていますが、対応するコンパイラが見つかりませんでした。使用可能な最新バージョンの TypeScript コンパイラが使われます ({1})。この警告を削除するには、TypeScript {0} SDK をインストールするか、TypeScriptToolsVersion の値を更新してください。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript ビルド タスク]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript ビルド タスク]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\ProjectItemsSchema.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="ko-KR" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;ContentType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ContentType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 파일]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;ItemType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ItemType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 파일]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

Some files were not shown because too many files have changed in this diff Show More