teable/packages/core/tsconfig.build.json
Boris 00b791557c
feat: release packages prepare (#477)
* chore: update config for prerelease

* feat: add release packages ci

* chore: release ci scripts

* ci(release): test

* ci: release ci steps fixed

* fix: useless build

* chore: gen prisma client before build db-main-prisma

* ci: test

* ci: the correct npm token location to use for the publish action

* chore: packages access public setting

* chore: remove changesets

* chore: alternative esm
2024-03-20 19:03:52 +08:00

14 lines
428 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "./tsconfig.json",
"compilerOptions": {
"baseUrl": "./src",
"target": "ESNext",
"module": "ESNext",
"declarationDir": "./dist",
"incremental": true,
"tsBuildInfoFile": "./tsconfig.build.tsbuildinfo" // for tsup rollup dts tsBuildInfoFile is required when using incremental
},
"exclude": ["dist", "**/__tests__/*", "*.spec.ts"]
}