mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 01:36:52 +00:00
f9f8dc78f4
* feat: dynamic import plugin client * refactor: pm * chore: improve cli * feat: improve code * feat: update dependences * feat: hello plugin * fix: plugin.enabled * fix: test error * feat: improve code * feat: pm command * feat: add samples * fix: redirect * feat: transitions * feat: bookmark * feat: add pm script
46 lines
994 B
JSON
46 lines
994 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-*-sample": [
|
|
"packages/samples/*/src"
|
|
],
|
|
"@nocobase/plugin-*": [
|
|
"packages/plugins/*/src"
|
|
],
|
|
"@nocobase/preset-*": [
|
|
"packages/presets/*/src"
|
|
],
|
|
"@nocobase/utils/client": [
|
|
"packages/core/utils/src/client"
|
|
],
|
|
"@nocobase/*": [
|
|
"packages/core/*/src"
|
|
]
|
|
}
|
|
},
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"module": "commonjs"
|
|
}
|
|
}
|
|
}
|