From 82a340ee79f3b8a9e53f1bbdfc2a854d5909d64b Mon Sep 17 00:00:00 2001 From: andresin87 Date: Wed, 18 Dec 2024 09:52:33 +0100 Subject: [PATCH] feat(packages/sui-bundler): modify the postinstall tsconfig template for trackingutils directory --- packages/sui-bundler/scripts/postinstall.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sui-bundler/scripts/postinstall.js b/packages/sui-bundler/scripts/postinstall.js index 59ef0954d..c24477d27 100755 --- a/packages/sui-bundler/scripts/postinstall.js +++ b/packages/sui-bundler/scripts/postinstall.js @@ -13,7 +13,7 @@ const tsConfigTemplate = `\ "compilerOptions": { "rootDir": "./" }, - "include": ["src", "domain", "components"] + "include": ["src", "domain", "components", "utils"] }` const md5 = str => crypto.createHash('md5').update(str).digest('hex')