Setup test local use
Setup path to sync between test and code Setup path for source: tsconfig.json Add this setting to the file to use @src instead of src (the real path) "paths": { "@src/*": ["src/*"] }, full content: { "compilerOptions": { "module": "commonjs", "declaration": true, "removeComments": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, "allowSyntheticDefaultImports": true, "target": "ES2021", "sourceMap": true, "outDir": "./dist", "baseUrl": "./", "paths": { "@src/*": ["src/*"] }, "incremental": true, "skipLibCheck": true, "strictNullChecks": false, "noImplicitAny": false, "strictBindCallApply": false, "forceConsistentCasingInFileNames": false, "noFallthroughCasesInSwitch": false } } Setup path for test package....