Skip to content

docs(i18n-id): translate declarationDir.md and several config section into Indonesia #1142

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions packages/tsconfig-reference/copy/id/options/declarationDir.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
display: "Declaration Dir"
oneline: "Atur direktori root untuk file d.ts yang akan dituju"
---

Menawarkan cara untuk mengonfigurasi direktori root tempat file deklarasi dipancarkan.

```
example
├── index.ts
├── package.json
└── tsconfig.json
```

dengan `tsconfig.json`;

```json tsconfig
{
"compilerOptions": {
"declaration": true,
"declarationDir": "./types"
}
}
```

Akan menempatkan d.ts untuk `index.ts` di folder` types`:

```
example
├── index.js
├── index.ts
├── package.json
├── tsconfig.json
└── types
└── index.d.ts
```