0.1.0
Pre-release
Pre-release
feat(tsconfig): add tsconfig.build.json for distribution (#22) This commit adds a `tsconfig.build.json` file to the project, which is a specialized TypeScript configuration for building the distribution package. The key changes include: - Setting `noEmit` to `false` to enable compilation - Enabling `declaration` and `declarationMap` to generate type definitions - Setting `sourceMap` to `true` to generate source maps - Configuring `outDir` and `rootDir` to output the compiled files to the `dist` directory - Excluding test files, distribution, and node_modules from the build