al-quran.reflectslight.io/tsconfig.json

20 lines
332 B
JSON
Raw Normal View History

{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"*": ["src/js/*"]
},
"lib": [
"dom"
],
"noImplicitAny": true,
"module": "es6",
"target": "es6",
"jsx": "react",
"allowJs": true,
"moduleResolution": "node",
2022-11-02 04:04:40 +01:00
"esModuleInterop": true,
"strictNullChecks": true
}
}