diff --git a/package.json b/package.json index eb9c3fc..d4f005b 100644 --- a/package.json +++ b/package.json @@ -79,7 +79,8 @@ "entry": [ "src/index.ts", "src/optims/index.ts", - "src/compilation/index.ts" + "src/compilation/index.ts", + "src/migration/index.ts" ], "cjsInterop": true, "format": [ diff --git a/tsconfig.json b/tsconfig.json index 57d0fd0..b935f12 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -8,11 +8,21 @@ "moduleResolution": "node", "resolveJsonModule": true, "sourceMap": true, - "types": ["jest", "node"], + "types": [ + "jest", + "node" + ], "declaration": true, "forceConsistentCasingInFileNames": true, - "allowSyntheticDefaultImports": true, + "allowSyntheticDefaultImports": true }, - "include": ["src"], - "exclude": ["./node_modules/", "./dist/", "./jest.config.js", "./test/"], + "include": [ + "src" + ], + "exclude": [ + "./node_modules/", + "./dist/", + "./jest.config.js", + "./test/" + ] }