decentralised message store

refactor: change bundle strategy

serenity 073015e3 82fa1362

Changed files
+5 -13
+5 -13
tsconfig.json
···
// "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */
// "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */
/* Modules */
-
"module": "nodenext" /* Specify what module code is generated. */,
+
"module": "bundler" /* Specify what module code is generated. */,
"rootDir": "./src/" /* Specify the root folder within your source files. */,
-
"moduleResolution": "nodenext" /* Specify how TypeScript looks up a file from a given module specifier. */,
+
"moduleResolution": "bundler" /* Specify how TypeScript looks up a file from a given module specifier. */,
"baseUrl": "./" /* Specify the base directory to resolve non-relative module names. */,
"paths": {
-
"@/*": [
-
"src/*"
-
]
+
"@/*": ["src/*"]
} /* Specify a set of entries that re-map imports to additional lookup locations. */,
// "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
// "typeRoots": [], /* Specify multiple folders that act like './node_modules/@types'. */
···
}
]
},
-
"include": [
-
"src/**/*",
-
"index.ts"
-
],
-
"exclude": [
-
"node_modules",
-
"dist"
-
]
+
"include": ["src/**/*", "index.ts"],
+
"exclude": ["node_modules", "dist"]
}