al-quran.reflectslight.io/tsconfig.json
2024-03-16 14:07:53 -03:00

20 lines
394 B
JSON

{
"compilerOptions": {
"strict": true,
"strictNullChecks": false,
"module": "commonjs",
"target": "ES2020",
"noImplicitAny": true,
"moduleResolution": "node",
"esModuleInterop": true,
"jsx": "react",
"allowJs": true,
"lib": [ "ES2020", "DOM" ],
"baseUrl": "src/",
"paths": {
"~/*": ["./js/*"],
"@json/*": ["./json/*"]
},
}
}