hololake-system-architecture/product-source/guanghu-knowledge-base/tsconfig.json

23 lines
545 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"outDir": "./dist",
"rootDir": ".",
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@server/*": ["./server/*"]
}
},
"include": ["src/**/*", "server/**/*"],
"exclude": ["node_modules", "dist"]
}