al-quran.reflectslight.io/etc/tsconfig.json
2024-08-22 16:12:41 -03:00

20 lines
431 B
JSON

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