al-quran.reflectslight.io/etc/tsconfig.json
2024-09-16 19:39:07 -03:00

23 lines
516 B
JSON

{
"include": [
"../src/**/*.ts",
"../src/**/*.tsx",
],
"compilerOptions": {
"strict": true,
"noImplicitAny": true,
"module": "commonjs",
"target": "ES2020",
"moduleResolution": "node",
"esModuleInterop": true,
"jsx": "react-jsx",
"lib": [ "ES2020", "DOM" ],
"typeRoots": ["../src/js/types/globals.d.ts", "../node_modules/@types"],
"skipLibCheck": true,
"baseUrl": "../src/",
"paths": {
"~/*": ["./js/*"],
"@json/*": ["./json/*"]
},
}
}