2020-10-24 15:34:43 +08:00
|
|
|
{
|
2023-09-15 08:51:20 +08:00
|
|
|
"extends": "./tsconfig.paths.json",
|
2020-10-24 15:34:43 +08:00
|
|
|
"compilerOptions": {
|
2024-04-02 18:13:33 +08:00
|
|
|
"lib": ["esnext", "DOM.Iterable", "DOM"],
|
2021-05-23 08:38:08 +08:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"moduleResolution": "node",
|
2024-04-01 13:39:44 +08:00
|
|
|
"outDir": "temp",
|
2020-11-11 15:23:39 +08:00
|
|
|
"jsx": "react",
|
2022-05-19 00:40:55 +08:00
|
|
|
"target": "esnext",
|
|
|
|
"module": "esnext",
|
|
|
|
"allowJs": true,
|
2021-05-23 08:38:08 +08:00
|
|
|
"noUnusedLocals": false,
|
|
|
|
"preserveConstEnums": true,
|
2021-12-06 21:23:34 +08:00
|
|
|
"skipLibCheck": true,
|
2023-08-02 00:07:52 +08:00
|
|
|
"skipDefaultLibCheck": true,
|
2020-10-24 15:34:43 +08:00
|
|
|
"sourceMap": true,
|
2021-12-06 21:23:34 +08:00
|
|
|
"inlineSources": true,
|
2022-01-10 19:22:21 +08:00
|
|
|
"resolveJsonModule": true,
|
2021-05-23 08:38:08 +08:00
|
|
|
"declaration": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"downlevelIteration": true,
|
2023-09-15 08:51:20 +08:00
|
|
|
"baseUrl": "."
|
2022-06-06 23:01:37 +08:00
|
|
|
},
|
|
|
|
"ts-node": {
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs"
|
|
|
|
}
|
2023-03-23 12:07:14 +08:00
|
|
|
},
|
2024-10-01 21:45:10 +08:00
|
|
|
"include": ["packages/**/*", "playwright.config.ts", "vitest.config.mts", "packages/plugins/@tachybase/plugin-external-data-source/src/client/features/rest-api/kit.tsx"],
|
2023-03-23 12:07:14 +08:00
|
|
|
"exclude": [
|
|
|
|
"packages/**/node_modules",
|
|
|
|
"packages/**/dist",
|
2023-06-20 11:48:02 +08:00
|
|
|
"packages/**/public",
|
|
|
|
"packages/core/build/bin",
|
2023-12-21 20:39:11 +08:00
|
|
|
"packages/core/cli/**/*",
|
2023-06-07 10:37:10 +08:00
|
|
|
"packages/**/lib",
|
|
|
|
"packages/**/es"
|
2023-03-23 12:07:14 +08:00
|
|
|
]
|
2022-06-06 23:01:37 +08:00
|
|
|
}
|