nocobase/tsconfig.json
chenos 3dce31f6a1
refactor: client application (#533)
* refactor: client application

* feat: application

* fix: improve code

* fix: app plugin

* fix: app plugin

* fix: china region plugin
2022-06-24 21:19:57 +08:00

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"
}
}
}