mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 13:26:44 +00:00
7e6a394f73
* feat(plugin-verification): add plugin-verification and phone for users * feat(plugin-verification): add env example * fix(plugin-verification): fix locales * fix(plugin-verification): remove sending comment * fix(plugin-verification): fix i18n * refactor(plugin-verification): move invalid error message to action * fix(plugin-verification): add field migration * chore(plugin-verification): update packages version * test(plugin-verification): temp remove new package dependency * refactor(plugin-verification): make sms authentication configurable in system settings * fix: smsAuthEnabled * feat: update preset-nocobase Co-authored-by: chenos <chenlinxh@gmail.com>
43 lines
915 B
JSON
43 lines
915 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/preset-*": [
|
|
"packages/presets/*/src"
|
|
],
|
|
"@nocobase/utils/client": [
|
|
"packages/core/utils/src/client"
|
|
],
|
|
"@nocobase/*": [
|
|
"packages/core/*/src"
|
|
]
|
|
}
|
|
},
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"module": "commonjs"
|
|
}
|
|
}
|
|
}
|