mirror of
https://github.com/teableio/teable.git
synced 2026-01-20 20:52:53 +08:00
21 lines
372 B
JSON
21 lines
372 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"allowJs": true
|
|
},
|
|
"exclude": ["node_modules", "**/.*/*", "dist"],
|
|
"include": [
|
|
".eslintrc.*",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"**/*.mts",
|
|
"**/*.js",
|
|
"**/*.cjs",
|
|
"**/*.mjs",
|
|
"**/*.jsx",
|
|
"**/*.json"
|
|
]
|
|
}
|