diff --git a/packages/react-front-kit-dropzone/package.json b/packages/react-front-kit-dropzone/package.json index ecd4fad3..a49e064d 100644 --- a/packages/react-front-kit-dropzone/package.json +++ b/packages/react-front-kit-dropzone/package.json @@ -33,6 +33,14 @@ "main": "./dist/index.js", "module": "./src/index.tsx", "types": "./dist/index.d.ts", + "files": [ + "CHANGELOG.md", + "LICENSE", + "package.json", + "README.md", + "dist", + "src" + ], "scripts": { "build": "tsc --project tsconfig.build.json", "test": "jest", diff --git a/packages/react-front-kit-shared/package.json b/packages/react-front-kit-shared/package.json index 7e5a7a64..056c4643 100644 --- a/packages/react-front-kit-shared/package.json +++ b/packages/react-front-kit-shared/package.json @@ -32,6 +32,14 @@ "main": "./dist/index.js", "module": "./src/index.tsx", "types": "./dist/index.d.ts", + "files": [ + "CHANGELOG.md", + "LICENSE", + "package.json", + "README.md", + "dist", + "src" + ], "scripts": { "build": "tsc --project tsconfig.build.json", "test": "jest", diff --git a/packages/react-front-kit-table/package.json b/packages/react-front-kit-table/package.json index 461f2fd0..1c602bbb 100644 --- a/packages/react-front-kit-table/package.json +++ b/packages/react-front-kit-table/package.json @@ -33,6 +33,14 @@ "main": "./dist/index.js", "module": "./src/index.tsx", "types": "./dist/index.d.ts", + "files": [ + "CHANGELOG.md", + "LICENSE", + "package.json", + "README.md", + "dist", + "src" + ], "scripts": { "build": "tsc --project tsconfig.build.json", "test": "jest", diff --git a/packages/react-front-kit/package.json b/packages/react-front-kit/package.json index 876c5f2c..e1189727 100644 --- a/packages/react-front-kit/package.json +++ b/packages/react-front-kit/package.json @@ -32,6 +32,14 @@ "main": "./dist/index.js", "module": "./src/index.tsx", "types": "./dist/index.d.ts", + "files": [ + "CHANGELOG.md", + "LICENSE", + "package.json", + "README.md", + "dist", + "src" + ], "scripts": { "build": "tsc --project tsconfig.build.json", "test": "jest", diff --git a/tsconfig.json b/tsconfig.json index 9db35321..50d932ef 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,5 @@ { "extends": "tsconfig/react-library.json", "include": [".", ".storybook/*"], - "exclude": ["apps"] + "exclude": ["apps", "out", ".husky", ".changeset", ".github"] }