2022-02-10 10:37:16 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"importHelpers": true,
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"baseUrl": "./",
|
|
|
|
"strict": true,
|
|
|
|
"paths": {
|
2022-09-30 04:38:38 +00:00
|
|
|
"@nocobase/plugin-sample-*/client": ["../../samples/*/src/client"],
|
2022-11-03 07:56:27 +00:00
|
|
|
"@nocobase/plugin-pro-*/client": ["../../pro-plugins/*/src/client"],
|
2022-06-10 09:46:46 +00:00
|
|
|
"@nocobase/plugin-*/client": ["../../plugins/*/src/client"],
|
2022-06-24 13:19:57 +00:00
|
|
|
"@nocobase/utils/client": ["../../core/utils/src/client"],
|
2022-06-10 09:46:46 +00:00
|
|
|
"@nocobase/*": ["../../core/*/src/"],
|
2022-02-10 10:37:16 +00:00
|
|
|
"@/*": ["src/*"],
|
|
|
|
"@@/*": ["src/.umi/*"]
|
|
|
|
},
|
|
|
|
"allowSyntheticDefaultImports": true
|
|
|
|
},
|
2022-06-14 07:01:53 +00:00
|
|
|
"include": ["mock/**/*", "src/**/*", "config/**/*", ".umirc.ts", "typings.d.ts"],
|
2023-06-20 03:48:02 +00:00
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"lib",
|
|
|
|
"es",
|
|
|
|
"public",
|
|
|
|
"dist",
|
|
|
|
"typings",
|
|
|
|
"**/__test__",
|
|
|
|
"test",
|
|
|
|
"docs",
|
|
|
|
"tests"
|
|
|
|
]
|
2022-02-10 10:37:16 +00:00
|
|
|
}
|