Skip to content

Commit

Permalink
pkg: rebase with main to support migration
Browse files Browse the repository at this point in the history
  • Loading branch information
EmileRolley committed May 29, 2024
1 parent f860986 commit f38b791
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 5 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
Expand Down
18 changes: 14 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -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/"
]
}

0 comments on commit f38b791

Please sign in to comment.