botui/tsconfig.json

23 lines
468 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "CommonJS",
"lib": ["DOM", "ES2020"],
"jsx": "react",
"strict": false,
"noImplicitAny": true,
"esModuleInterop": true,
"skipLibCheck": true,
"outDir": "dist",
"rootDir": "src",
"moduleResolution": "node",
"resolveJsonModule": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules"]
}