application-typescript 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -121,7 +121,11 @@ Keep imports acyclic.
|
|
|
121
121
|
### Runner
|
|
122
122
|
|
|
123
123
|
```html
|
|
124
|
+
<!-- esm.sh -->
|
|
124
125
|
<script type="module" src="https://esm.sh/application-typescript"></script>
|
|
126
|
+
|
|
127
|
+
<!-- or unpkg -->
|
|
128
|
+
<script type="module" src="https://unpkg.com/application-typescript"></script>
|
|
125
129
|
```
|
|
126
130
|
|
|
127
131
|
Must come **after** all `application/typescript` markers so the DOM query sees them.
|
package/package.json
CHANGED