DionysianIdle/tsconfig.json
2025-05-18 05:24:42 -05:00

19 lines
352 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
"typeRoots": ["./node_modules/@types"],
"outDir": "./dist",
"target": "ES2020",
"moduleResolution": "bundler",
"skipLibCheck": true,
"isolatedModules": true,
"jsx": "react-jsx",
"strict": true,
"noUnusedLocals": true
}
}