mirror of
https://github.com/teableio/teable.git
synced 2026-02-19 17:19:50 +08:00
34 lines
885 B
JSON
34 lines
885 B
JSON
{
|
|
"include": ["**/*.ts", "**/*.tsx"],
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"jsx": "react-jsx",
|
|
"module": "ESNext",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"types": ["vite/client"],
|
|
"experimentalDecorators": true,
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"verbatimModuleSyntax": false,
|
|
"noEmit": true,
|
|
|
|
/* Linting */
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedSideEffectImports": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@teable/v2-*": ["../../packages/v2/*/src/index"],
|
|
"@teable/v2-contract-http-implementation/handlers": [
|
|
"../../packages/v2/contract-http-implementation/src/handlers/index.ts"
|
|
]
|
|
}
|
|
}
|
|
}
|