9 lines
375 B
Markdown
9 lines
375 B
Markdown
# Library template
|
|
Basic template to create a TypeScript library that works properly when included
|
|
|
|
## How to split in multiple file
|
|
Technically, there is nothing to do, but if you want to allow sub-imports, you have to :
|
|
|
|
1. In `package.json`, under `exports`, add `"./submodule": "./src/submodule.ts"`
|
|
2. In `tsconfig.json`, under `paths`, add `"lib-name/*": ["./src/*"]`
|