al-quran.reflectslight.io/tsconfig.json

18 lines
349 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/",
"paths": { "*": ["js/*"] },
}
}