2020-10-24 15:34:43 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2021-05-23 08:38:08 +08:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"moduleResolution": "node",
|
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,
|
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,
|
|
|
|
"baseUrl": ".",
|
2020-10-24 15:34:43 +08:00
|
|
|
"paths": {
|
2022-04-17 10:00:42 +08:00
|
|
|
"@nocobase/app-*": [
|
|
|
|
"packages/app/*/src"
|
|
|
|
],
|
2022-09-26 14:52:10 +08:00
|
|
|
"@nocobase/plugin-sample-*": [
|
2022-09-18 14:10:01 +08:00
|
|
|
"packages/samples/*/src"
|
|
|
|
],
|
2022-11-03 15:56:27 +08:00
|
|
|
"@nocobase/plugin-pro-*": [
|
|
|
|
"packages/pro-plugins/*/src"
|
|
|
|
],
|
2022-04-17 10:00:42 +08:00
|
|
|
"@nocobase/plugin-*": [
|
|
|
|
"packages/plugins/*/src"
|
|
|
|
],
|
2022-08-20 18:06:12 +08:00
|
|
|
"@nocobase/preset-*": [
|
|
|
|
"packages/presets/*/src"
|
|
|
|
],
|
2022-06-24 21:19:57 +08:00
|
|
|
"@nocobase/utils/client": [
|
|
|
|
"packages/core/utils/src/client"
|
|
|
|
],
|
2022-04-17 10:00:42 +08:00
|
|
|
"@nocobase/*": [
|
|
|
|
"packages/core/*/src"
|
|
|
|
]
|
2020-10-24 15:34:43 +08:00
|
|
|
}
|
2022-06-06 23:01:37 +08:00
|
|
|
},
|
|
|
|
"ts-node": {
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs"
|
|
|
|
}
|
2023-03-23 12:07:14 +08:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"packages/**/*"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"packages/**/node_modules",
|
|
|
|
"packages/**/dist",
|
|
|
|
"packages/**/lib"
|
|
|
|
]
|
2022-06-06 23:01:37 +08:00
|
|
|
}
|