mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 11:36:42 +00:00
9e5e96b9e4
* fix: client lib require wrapper * fix: bug * fix: add tsconfig.paths.json * fix: collection dir not exists * fix: improve... * fix: update yarn.lock * fix: db.sync * fix: bugs * fix: bugs * fix: bugs * fix: bugs && allow user custom build config * docs: user custom config docs * refactor: custom user build config * fix: bugs * fix: build plugin-client bug --------- Co-authored-by: chenos <chenlinxh@gmail.com>
37 lines
873 B
JSON
37 lines
873 B
JSON
{
|
|
"extends": "./tsconfig.paths.json",
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "node",
|
|
"jsx": "react",
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"allowJs": true,
|
|
"noUnusedLocals": false,
|
|
"preserveConstEnums": true,
|
|
"skipLibCheck": true,
|
|
"skipDefaultLibCheck": true,
|
|
"sourceMap": true,
|
|
"inlineSources": true,
|
|
"resolveJsonModule": true,
|
|
"declaration": true,
|
|
"experimentalDecorators": true,
|
|
"downlevelIteration": true,
|
|
"baseUrl": "."
|
|
},
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"module": "commonjs"
|
|
}
|
|
},
|
|
"include": ["packages/**/*", ".dumi/**/*", ".dumirc.ts", "scripts/setupVitest.ts"],
|
|
"exclude": [
|
|
"packages/**/node_modules",
|
|
"packages/**/dist",
|
|
"packages/**/public",
|
|
"packages/core/build/bin",
|
|
"packages/**/lib",
|
|
"packages/**/es"
|
|
]
|
|
}
|