mirror of
https://github.com/teableio/teable.git
synced 2026-01-21 13:11:35 +08:00
22 lines
565 B
JSON
22 lines
565 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"outDir": "./dist",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"module": "esnext",
|
|
"jsx": "react-jsx",
|
|
"rootDir": "../",
|
|
// "jsxImportSource": "@emotion/react",
|
|
"noEmit": false,
|
|
"incremental": true,
|
|
"composite": true,
|
|
"paths": {
|
|
"@teable/icons": ["../icons/src"]
|
|
}
|
|
},
|
|
"exclude": ["**/node_modules", "**/.*/", "dist", "build"],
|
|
"include": ["./src", "../icons/src"]
|
|
}
|