mirror of
https://github.com/teableio/teable
synced 2024-11-22 07:13:32 +00:00
00b791557c
* 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
14 lines
428 B
JSON
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"]
|
|
}
|