al-quran.reflectslight.io/etc/tsconfig.json

21 lines
431 B
JSON
Raw Normal View History

{
2024-08-22 20:39:55 +02:00
"include": ["../src/**/*.ts", "../src/**/*.tsx"],
"exclude": ["../node_modules"],
"compilerOptions": {
2023-03-11 12:04:18 +01:00
"strict": true,
"module": "commonjs",
"target": "ES2020",
"noImplicitAny": true,
"moduleResolution": "node",
2022-11-02 04:04:40 +01:00
"esModuleInterop": true,
"jsx": "react",
"lib": [ "ES2020", "DOM" ],
2024-08-22 20:39:55 +02:00
"baseUrl": "../src/",
2024-03-16 18:07:53 +01:00
"paths": {
"~/*": ["./js/*"],
"@json/*": ["./json/*"]
},
}
}