nocobase/packages/app/client/tsconfig.json

27 lines
914 B
JSON
Raw Normal View History

2022-02-10 10:37:16 +00:00
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"importHelpers": true,
"jsx": "react-jsx",
"esModuleInterop": true,
"sourceMap": true,
"baseUrl": "./",
"strict": true,
"paths": {
2022-09-30 04:38:38 +00:00
"@nocobase/plugin-sample-*/client": ["../../samples/*/src/client"],
2022-11-03 07:56:27 +00:00
"@nocobase/plugin-pro-*/client": ["../../pro-plugins/*/src/client"],
"@nocobase/plugin-*/client": ["../../plugins/*/src/client"],
"@nocobase/utils/client": ["../../core/utils/src/client"],
"@nocobase/*": ["../../core/*/src/"],
2022-02-10 10:37:16 +00:00
"@/*": ["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"]
2022-02-10 10:37:16 +00:00
}