extension-create 2.0.0-rc.33 → 2.0.0-rc.34
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/dist/module.js +2 -2
- package/package.json +1 -1
package/dist/module.js
CHANGED
|
@@ -427,10 +427,10 @@ async function generateExtensionTypes(projectPath, projectName) {
|
|
|
427
427
|
// If you need additional types, consider creating a new *.d.ts file and
|
|
428
428
|
// referencing it in the "include" array of your tsconfig.json file.
|
|
429
429
|
// See https://www.typescriptlang.org/tsconfig#include for more information.
|
|
430
|
-
/// <reference types="${typePath}" />
|
|
430
|
+
/// <reference types="${typePath}/types" />
|
|
431
431
|
|
|
432
432
|
// Polyfill types for browser.* APIs
|
|
433
|
-
/// <reference types="${typePath}/polyfill" />
|
|
433
|
+
/// <reference types="${typePath}/types/polyfill" />
|
|
434
434
|
`;
|
|
435
435
|
try {
|
|
436
436
|
await promises_namespaceObject.mkdir(projectPath, {
|