mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 17:20:57 +00:00
27 lines
914 B
JSON
27 lines
914 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"importHelpers": true,
|
|
"jsx": "react-jsx",
|
|
"esModuleInterop": true,
|
|
"sourceMap": true,
|
|
"baseUrl": "./",
|
|
"strict": true,
|
|
"paths": {
|
|
"@nocobase/plugin-sample-*/client": ["../../samples/*/src/client"],
|
|
"@nocobase/plugin-pro-*/client": ["../../pro-plugins/*/src/client"],
|
|
"@nocobase/plugin-*/client": ["../../plugins/*/src/client"],
|
|
"@nocobase/utils/client": ["../../core/utils/src/client"],
|
|
"@nocobase/*": ["../../core/*/src/"],
|
|
"@/*": ["src/*"],
|
|
"@@/*": ["src/.umi/*"]
|
|
},
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"include": ["mock/**/*", "src/**/*", "config/**/*", ".umirc.ts", "typings.d.ts"],
|
|
"exclude": ["node_modules", "lib", "es", "dist", "typings", "**/__test__", "test", "docs", "tests"]
|
|
}
|