Quran.js/etc/tsconfig.json

21 lines
334 B
JSON
Raw Normal View History

2024-10-22 07:02:04 +02:00
{
2024-10-22 14:02:29 +02:00
"include": [
"../src/**/*.ts",
"../src/**/*.tsx",
],
2024-10-22 07:02:04 +02:00
"compilerOptions": {
"strict": true,
"module": "ESNEXT",
"target": "ES2020",
"esModuleInterop": true,
"moduleResolution": "node",
2024-10-22 14:02:29 +02:00
"baseUrl": "../src/",
2024-10-22 07:02:04 +02:00
"paths": { "*": ["*"] },
2024-10-22 14:02:29 +02:00
"outDir": "../dist",
2024-10-22 07:02:04 +02:00
"declaration": true,
}
}