botui/tsconfig.json

24 lines
468 B
JSON
Raw Normal View History

2024-10-26 13:05:56 -03:00
{
"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,
2024-10-27 19:57:03 -03:00
2024-10-26 13:05:56 -03:00
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules"]
}