34 lines
803 B
JSON
34 lines
803 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",
|
|
"./postcss.config.js"
|
|
]
|
|
}
|