mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 13:16:08 +00:00
49 lines
1.0 KiB
JSON
49 lines
1.0 KiB
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-pro-*": [
|
|
"packages/pro-plugins/*/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"
|
|
}
|
|
}
|
|
}
|