platform-codebase/features/analytics/frontend-users/tsconfig.json

26 lines
419 B
JSON
Executable file

{
"extends": "../../../tsconfig.base.json",
"compilerOptions": {
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitAny": false,
"skipLibCheck": true,
"types": [
"vite/client"
],
"jsx": "react-jsx",
"baseUrl": "./",
"paths": {
"@/*": [
"src/*"
]
}
},
"include": [
"src"
],
"exclude": [
"node_modules",
"dist"
]
}