egg_tools/tsconfig.json

25 lines
624 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,
"rootDir": "./src", // 设置 rootDir
"outDir": "./dist"
},
"include": ["src"],
"exclude": ["node_modules", "**/*.test.ts"]
}