Skip to content

Commit 362b449

Browse files
committed
chore: update branch with main
2 parents 90bf3d2 + 23c71d0 commit 362b449

File tree

287 files changed

+5736
-484
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

287 files changed

+5736
-484
lines changed

.github/CODEOWNERS

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# See https://github.com/OSS-Docs-Tools/code-owner-self-merge#readme
22

33
# Collaborators for Japanese Translation of the Website
4-
docs/playground/ja @sasurau4 @Quramy @Naturalclar [translation] [jp]
5-
docs/tsconfig/ja/**/*.md @sasurau4 @Quramy @Naturalclar [translation] [jp]
6-
docs/typescriptlang/ja/**/*.ts @sasurau4 @Quramy @Naturalclar [translation] [jp]
7-
docs/typescriptlang/ja.ts @sasurau4 @Quramy @Naturalclar [translation] [jp]
8-
docs/documentation/ja/**/*.md @sasurau4 @Quramy @Naturalclar [translation] [jp]
4+
docs/playground/ja @sasurau4 @Quramy @Naturalclar @uraway [translation] [jp]
5+
docs/tsconfig/ja/**/*.md @sasurau4 @Quramy @Naturalclar @uraway [translation] [jp]
6+
docs/typescriptlang/ja/**/*.ts @sasurau4 @Quramy @Naturalclar @uraway [translation] [jp]
7+
docs/typescriptlang/ja.ts @sasurau4 @Quramy @Naturalclar @uraway [translation] [jp]
8+
docs/documentation/ja/**/*.md @sasurau4 @Quramy @Naturalclar @uraway [translation] [jp]
99

1010
# Collaborators for Portuguese Translation of the Website
1111
docs/playground/pt @khaosdoctor @danilofuchs [translation] [pt]
@@ -29,11 +29,11 @@ docs/typescriptlang/zh.ts @Kingwl [translation] [zh]
2929
docs/documentation/zh/**/*.md @Kingwl [translation] [zh]
3030

3131
# Collaborators for Korean Translation of the Website
32-
docs/playground/ko @Bumkeyy @yeonjuan @guyeol [translation] [ko]
33-
docs/tsconfig/ko/**/*.md @Bumkeyy @yeonjuan @guyeol [translation] [ko]
34-
docs/typescriptlang/ko/**/*.ts @Bumkeyy @yeonjuan @guyeol [translation] [ko]
35-
docs/typescriptlang/ko.ts @Bumkeyy @yeonjuan @guyeol [translation] [ko]
36-
docs/documentation/ko/**/*.md @Bumkeyy @yeonjuan @guyeol [translation] [ko]
32+
docs/playground/ko @bumkeyy @yeonjuan @guyeol @dvlprsh [translation] [ko]
33+
docs/tsconfig/ko/**/*.md @bumkeyy @yeonjuan @guyeol @dvlprsh [translation] [ko]
34+
docs/typescriptlang/ko/**/*.ts @bumkeyy @yeonjuan @guyeol @dvlprsh [translation] [ko]
35+
docs/typescriptlang/ko.ts @bumkeyy @yeonjuan @guyeol @dvlprsh [translation] [ko]
36+
docs/documentation/ko/**/*.md @bumkeyy @yeonjuan @guyeol @dvlprsh [translation] [ko]
3737

3838
# Collaborators for Indonesian Translation of the Website
3939
docs/playground/id @jefrydco @nusendra @mazipan @mandaputtra [translation] [id]
@@ -62,3 +62,10 @@ docs/tsconfig/it/**/*.md @Nabster101 @DeltaPy @PyGera [translation] [it]
6262
docs/typescriptlang/it/**/*.ts @Nabster101 @DeltaPy @PyGera [translation] [it]
6363
docs/typescriptlang/it.ts @Nabster101 @DeltaPy @PyGera [translation] [it]
6464
docs/documentation/it/**/*.md @Nabster101 @DeltaPy @PyGera [translation] [it]
65+
66+
# Collaborators for French Translation of the Website
67+
docs/playground/fr @ManuSquall @Ascor8522 [translation] [fr]
68+
docs/tsconfig/fr/**/*.md @ManuSquall @Ascor8522 [translation] [fr]
69+
docs/typescriptlang/fr/**/*.ts @ManuSquall @Ascor8522 [translation] [fr]
70+
docs/typescriptlang/fr.ts @ManuSquall @Ascor8522 [translation] [fr]
71+
docs/documentation/fr/**/*.md @ManuSquall @Ascor8522 [translation] [fr]

.github/workflows/CI.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ jobs:
88
steps:
99
- uses: actions/checkout@v1
1010
- uses: actions/setup-node@v1
11+
with:
12+
node-version: "13.x"
13+
1114
- run: yarn
1215
- run: yarn docs-sync validate-against-en
1316

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name: Codeowners merging
22
on:
3-
pull_request_target: { types: [ opened, synchronize, reopened] }
4-
issue_comment: { types: created }
5-
pull_request_review: { types: submitted }
3+
pull_request_target: { types: [opened, synchronize, reopened] }
4+
issue_comment: { types: [created] }
5+
pull_request_review: { types: [submitted] }
66

77
jobs:
8-
build:
8+
merge-check:
99
runs-on: ubuntu-latest
1010

1111
steps:
@@ -14,3 +14,6 @@ jobs:
1414
env:
1515
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1616
uses: OSS-Docs-Tools/code-owner-self-merge@master
17+
with:
18+
if_no_maintainers_add_label: 'maintainers'
19+
if_no_maintainers_assign: '@orta'

.github/workflows/post-localizations.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ jobs:
99
steps:
1010
- uses: actions/checkout@v1
1111
- uses: actions/setup-node@v1
12+
with:
13+
node-version: "13.x"
14+
1215
- run: yarn install
1316

1417
- run: yarn danger ci

.github/workflows/weekly-contributions.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,3 +105,6 @@ dist
105105

106106
# Related to @oss-docs/sync
107107
docs/**/en
108+
109+
# Then you can set this up yourself
110+
.vscode

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ yarn lint
2020
yarn lint --watch
2121
```
2222

23-
That's it, you've got a copy of all the documentation and now can write documentation which follows the existing patterns.
23+
That's it, you've got a copy of all the documentation and now can write documentation which follows the existing patterns. There's a longer intro [in `welcome.md`](./welcome.md).
2424

2525
### How translations work
2626

attribution.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
---
2+
title: Nightly Builds
3+
layout: docs
4+
permalink: /fr/docs/handbook/nightly-builds.html
5+
oneline: Comment utiliser une nightly build de TypeScript
6+
translatable: true
7+
---
8+
9+
Une nightly build de la branche [Typescript `main`](https://github.com/Microsoft/TypeScript/tree/main) est publiée avant minuit PST sur npm.
10+
Voici comment vous pouvez l'obtenir et l'utiliser avec vos outils.
11+
12+
## En utilisant npm
13+
14+
```shell
15+
npm install -g typescript@next
16+
```
17+
18+
## Mettre à jour votre IDE pour utiliser les nightly builds
19+
20+
Vous pouvez également mettre à jour votre IDE pour utiliser la nightly build.
21+
Vous devrez d'abord installer le package via npm.
22+
Vous pouvez soit installer le package npm globalement, soit dans un dossier local `node_modules`.
23+
24+
Le reste de cette section suppose que `typescript@next` est déjà installé.
25+
26+
### Visual Studio Code
27+
28+
Mettez à jour `.vscode/settings.json` avec les éléments suivants :
29+
30+
```json
31+
"typescript.tsdk": "<chemin vers votre dossier>/node_modules/typescript/lib"
32+
```
33+
34+
Plus d'informations sont disponibles sur la [documentation VSCode](https://code.visualstudio.com/Docs/languages/typescript#_using-newer-typescript-versions).
35+
36+
37+
### Sublime Text
38+
39+
Mettez à jour le fichier `Paramètres - Utilisateur` avec les éléments suivants :
40+
41+
```json
42+
"typescript_tsdk": "<chemin vers votre dossier>/node_modules/typescript/lib"
43+
```
44+
45+
Plus d'informations sont disponibles dans la [documentation d'installation du plug-in TypeScript pour Sublime Text](https://github.com/Microsoft/TypeScript-Sublime-Plugin#installation).
46+
47+
### Visual Studio 2013 et 2015
48+
49+
> Remarque : La plupart des modifications ne nécessitent pas l'installation d'une nouvelle version du plug-in VS TypeScript.
50+
51+
La nightly build n'inclut actuellement pas la configuration complète du plug-in, mais nous travaillons également à la publication d'un programme d'installation nigthly.
52+
53+
1. Téléchargez le script [VSDevMode.ps1](https://github.com/Microsoft/TypeScript/blob/main/scripts/VSDevMode.ps1).
54+
55+
> Voir également notre page wiki sur [l'utilisation d'un fichier de service de langue personnalisé](https://github.com/Microsoft/TypeScript/wiki/Dev-Mode-in-Visual-Studio#using-a-custom-language-service-file).
56+
57+
2. À partir d'une fenêtre de commande PowerShell, exécutez :
58+
59+
Pour VS 2015:
60+
```posh
61+
VSDevMode.ps1 14 -tsScript <chemin vers votre dossier>/node_modules/typescript/lib
62+
```
63+
64+
Pour VS 2013:
65+
66+
```posh
67+
VSDevMode.ps1 12 -tsScript <chemin vers votre dossier>/node_modules/typescript/lib
68+
```
69+
70+
### IntelliJ IDEA (Mac)
71+
72+
Allez dans `Préférences` > `Langues & Frameworks` > `TypeScript` :
73+
74+
> Version TypeScript : Si vous avez installé avec npm : `/usr/local/lib/node_modules/typescript/lib`
75+
76+
### IntelliJ IDEA (Windows)
77+
78+
Allez dans `Fichier` > `Paramètres` > `Langues & Frameworks` > `TypeScript` :
79+
80+
> Version TypeScript : Si vous avez installé avec npm : `C:\Users\USERNAME\AppData\Roaming\npm\node_modules\typescript\lib`

0 commit comments

Comments
 (0)