lx-music-mobile-mod/tsconfig.json
2023-12-07 17:04:36 +08:00

24 lines
758 B
JSON

{
"extends": "@react-native/typescript-config/tsconfig.json", /* Recommended React Native TSConfig base */
"compilerOptions": {
/* Visit https://aka.ms/tsconfig.json to read more about this file */
"types": ["react-native", "node"],
/* Completeness */
"skipLibCheck": true, /* Skip type checking all .d.ts files. */
"baseUrl": "./",
"paths": {
"@/*": ["src/*"],
// "@config": ["src/config"],
// "@store": ["src/store"],
// "@components": ["src/components"],
// "@navigation": ["src/navigation"],
// "@screens": ["src/screens"],
// "@theme": ["src/theme"],
// "@utils": ["src/utils"],
}
},
"exclude": ["node_modules", "build", "dist"]
}