Revenge/tsconfig.json

24 lines
616 B
JSON
Raw Permalink Normal View History

2022-10-18 22:04:55 +00:00
{
"include": ["src"],
"exclude": ["node_modules"],
"compilerOptions": {
"baseUrl": ".",
"sourceMap": true,
"module": "ESNext",
"target": "ESNext",
"moduleResolution": "node",
"esModuleInterop": true,
"jsx": "react",
"strict": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"paths": {
"@/*": ["src/*"],
"@types": ["src/def.d.ts"],
"@lib/*": ["src/lib/*"],
2023-02-04 17:05:47 +00:00
"@metro/*": ["src/lib/metro/*"],
2022-10-19 06:58:32 +00:00
"@ui/*": ["src/ui/*"]
2022-10-18 22:04:55 +00:00
}
}
}