mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 12:06:47 +00:00
3dce31f6a1
* refactor: client application * feat: application * fix: improve code * fix: app plugin * fix: app plugin * fix: china region plugin
40 lines
843 B
JSON
40 lines
843 B
JSON
{
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "node",
|
|
"jsx": "react",
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"allowJs": true,
|
|
"noUnusedLocals": false,
|
|
"preserveConstEnums": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"inlineSources": true,
|
|
"resolveJsonModule": true,
|
|
"declaration": true,
|
|
"experimentalDecorators": true,
|
|
"downlevelIteration": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@nocobase/app-*": [
|
|
"packages/app/*/src"
|
|
],
|
|
"@nocobase/plugin-*": [
|
|
"packages/plugins/*/src"
|
|
],
|
|
"@nocobase/utils/client": [
|
|
"packages/core/utils/src/client"
|
|
],
|
|
"@nocobase/*": [
|
|
"packages/core/*/src"
|
|
]
|
|
}
|
|
},
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"module": "commonjs"
|
|
}
|
|
}
|
|
}
|