monorepo-microservice-rbac/apps/aorta/tsconfig.json
2023-08-27 14:37:59 +08:00

34 lines
705 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": [
"src/*"
],
"@@/*": [
"core/*"
]
},
"target": "es2016",
"esModuleInterop": true,
"module": "commonjs",
"experimentalDecorators": true,
"resolveJsonModule": true, // 引入json
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"typeRoots": [
"./typings/*.d.ts",
"node_modules/@types"
],
"jsx": "react-jsx" // 这里改成react-jsx就不需要在tsx文件中手动引入React了
},
"include": [
"./src",
"./core",
"./scripts",
"./typings/*.d.ts",
"interfaces",
"index.tsx"
]
}