egg_tools/tsconfig.json
zhaoyingbo 686a77d8d1
Some checks failed
/ release (push) Failing after 1m1s
feat: 把每个组件进行拆包处理
2024-08-19 01:45:18 +00:00

26 lines
646 B
JSON

{
"compilerOptions": {
"lib": ["ESNext"],
"module": "esnext",
"target": "esnext",
"moduleResolution": "bundler",
"moduleDetection": "force",
"allowImportingTsExtensions": false,
"noEmit": false,
"composite": true,
"strict": true,
"downlevelIteration": true,
"skipLibCheck": true,
"jsx": "react-jsx",
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"declaration": true,
"sourceMap": true,
"rootDir": "./packages",
"outDir": "./dist"
},
"include": ["./packages/**/*"],
"exclude": ["node_modules", "**/*.test.ts"]
}