Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ dist
# test artifacts
coverage

# tsimp cache
.tsimp

# Mac OS artifacts
.DS_Store

Expand All @@ -18,6 +15,7 @@ temp

# npm pack result
*.tgz
!tarballs/krutoo-ts-loader-0.0.0.tgz

# vscode
.vscode/settings.json
1 change: 0 additions & 1 deletion .ls-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,3 @@ ignore:
- '*/.git'
- '*/node_modules'
- '*/dist'
- '*/.tsimp'
18 changes: 0 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,24 +119,6 @@ npm run setup -- --vscode

Notable info about this package

### How Node.js scripts works with TypeScript?

In `package.json` you can see something like:

```json
{
"scripts": {
"hello": "node ./scripts/hello.ts"
}
}
```

It is working because in `.npmrc` there is:

```
node-options='--import tsimp/import'
```

### What is a custom `sideEffects` property in `package.json`?

This property need for bundlers like **Webpack** and **Rspack** that uses it for check that Tree Shaking is available.
Expand Down
2 changes: 1 addition & 1 deletion docs/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@
"@krutoo/utils/types": ["../src/types/mod.ts"]
}
},
"exclude": ["node_modules", "dist", ".generated", ".tsimp"]
"exclude": ["node_modules", "dist", ".generated"]
}
Loading
Loading