1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-01-19 01:24:09 +01:00
upscayl/renderer/tsconfig.json

33 lines
733 B
JSON
Raw Normal View History

2022-11-12 02:09:28 +05:30
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"incremental": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
2023-08-30 12:46:54 +05:30
"jsx": "preserve",
"paths": {
2023-10-14 06:30:49 +05:30
"@/*": ["./*"],
2024-04-17 21:48:45 +05:30
"@common/*": ["../common/*"],
"@components/*": ["./components/*"],
"@lib/utils": ["./lib/utils/*"]
2023-08-30 12:46:54 +05:30
}
2022-11-12 02:09:28 +05:30
},
2023-10-25 17:14:22 +05:30
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"../app.module.ts",
"../common/**/*"
],
2022-11-12 02:09:28 +05:30
"exclude": ["node_modules"]
}