mirror of
https://github.com/teableio/teable.git
synced 2026-02-05 04:50:41 +08:00
* 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
22 lines
544 B
JSON
22 lines
544 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"types": ["node"],
|
|
"baseUrl": "./src",
|
|
"target": "esnext",
|
|
"lib": ["esnext"],
|
|
"module": "CommonJS",
|
|
"noEmit": false,
|
|
"incremental": true,
|
|
"declaration": true,
|
|
"declarationDir": "./dist",
|
|
"rootDir": "./src",
|
|
"composite": true,
|
|
"outDir": "./dist",
|
|
"experimentalDecorators": true
|
|
},
|
|
"include": ["./src"],
|
|
"exclude": ["**/node_modules", "**/.*/", "./dist", "./build"]
|
|
}
|