mirror of
https://github.com/nocobase/nocobase
synced 2024-11-16 10:46:19 +00:00
3fa13d8465
* feat: audit logs * feat: improve code * feat: improve code * feat: improve code * feat: improve code * feat: improve code * fix: field load
40 lines
764 B
JSON
40 lines
764 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"importHelpers": true,
|
|
"jsx": "react-jsx",
|
|
"esModuleInterop": true,
|
|
"sourceMap": true,
|
|
"baseUrl": "./",
|
|
"strict": true,
|
|
"paths": {
|
|
"@nocobase/plugin-*/client": ["../../plugins/*/src/client"],
|
|
"@nocobase/*": ["../../core/*/src/"],
|
|
"@/*": ["src/*"],
|
|
"@@/*": ["src/.umi/*"]
|
|
},
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"include": [
|
|
"mock/**/*",
|
|
"src/**/*",
|
|
"config/**/*",
|
|
".umirc.ts",
|
|
"typings.d.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"lib",
|
|
"es",
|
|
"dist",
|
|
"typings",
|
|
"**/__test__",
|
|
"test",
|
|
"docs",
|
|
"tests"
|
|
]
|
|
}
|