al-quran_kaios/etc/tsconfig.json

25 lines
546 B
JSON
Raw Normal View History

2024-10-17 04:57:13 +02:00
{
2024-10-26 10:09:51 +02:00
"include": [
"../src/**/*.ts",
"../src/**/*.tsx",
],
2024-10-17 04:57:13 +02:00
"compilerOptions": {
"strict": true,
2024-10-26 10:09:51 +02:00
"noImplicitAny": true,
2024-10-17 04:57:13 +02:00
"module": "commonjs",
"target": "ES5",
"moduleResolution": "node",
"esModuleInterop": true,
2024-10-29 17:05:06 +01:00
"jsxImportSource": "preact",
2024-10-26 10:09:51 +02:00
"jsx": "react-jsx",
2024-10-17 04:57:13 +02:00
"lib": [ "ES2020", "DOM" ],
2024-10-26 10:09:51 +02:00
"typeRoots": ["../src/js/types/globals.d.ts", "../node_modules/@types"],
"skipLibCheck": true,
2024-10-17 04:57:13 +02:00
"baseUrl": "../src/",
"paths": {
"~/*": ["./js/*"],
"@json/*": ["./json/*"]
},
}
}