mirror of
https://github.com/teableio/teable.git
synced 2026-03-23 00:04:56 +08:00
* fix: aggregation function * fix: record sort * chore: upgrade dependencies * docs: update readme.md * fix: init bootstrap provider unit error --------- Co-authored-by: pengap <penganpingprivte@gmail.com>
27 lines
548 B
JSON
27 lines
548 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"baseUrl": "./src",
|
|
"target": "esnext",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"module": "esnext",
|
|
"jsx": "react-jsx",
|
|
"noEmit": false,
|
|
"incremental": true,
|
|
"paths": {}
|
|
},
|
|
"exclude": ["**/node_modules", "**/.*/*", "dist"],
|
|
"include": [
|
|
".eslintrc.*",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"**/*.mts",
|
|
"**/*.js",
|
|
"**/*.cjs",
|
|
"**/*.mjs",
|
|
"**/*.jsx",
|
|
"**/*.json"
|
|
]
|
|
}
|