non-fungible-apps/ui/tsconfig.json

28 lines
750 B
JSON

{
"compilerOptions": {
"module": "ES2020",
"target": "ESNext",
"esModuleInterop": true,
"sourceMap": true,
"rootDirs": ["src"],
"baseUrl": "src",
"paths": {
"@/*": ["*"],
"@/graphclient": ["../.graphclient"],
"@/graphclient/*": ["../.graphclient/*"]
},
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"jsx": "react-jsx",
"strict": true,
"noUnusedLocals": true,
"skipLibCheck": true,
"isolatedModules": true,
"types": ["vite/client"]
},
"include": ["./src", "./.graphclient", "./*.ts", "./tailwind.config.js"]
}