al-quran_kaios/etc/tsconfig.json

21 lines
428 B
JSON
Raw Permalink Normal View History

2024-10-17 04:57:13 +02:00
{
"include": ["../src/**/*.ts", "../src/**/*.tsx"],
"exclude": ["../node_modules"],
"compilerOptions": {
"strict": true,
"module": "commonjs",
"target": "ES5",
"noImplicitAny": true,
"moduleResolution": "node",
"esModuleInterop": true,
"jsx": "react",
"lib": [ "ES2020", "DOM" ],
"baseUrl": "../src/",
"paths": {
"~/*": ["./js/*"],
"@json/*": ["./json/*"]
},
}
}