al-quran.reflectslight.io/tsconfig.json

21 lines
394 B
JSON
Raw Normal View History

{
"compilerOptions": {
2023-03-11 12:04:18 +01:00
"strict": true,
"strictNullChecks": false,
"module": "commonjs",
"target": "ES2020",
"noImplicitAny": true,
"moduleResolution": "node",
2022-11-02 04:04:40 +01:00
"esModuleInterop": true,
"jsx": "react",
"allowJs": true,
"lib": [ "ES2020", "DOM" ],
"baseUrl": "src/",
2024-03-16 18:07:53 +01:00
"paths": {
"~/*": ["./js/*"],
"@json/*": ["./json/*"]
},
}
}