1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-13 18:30:54 +01:00
upscayl/renderer/tsconfig.json

33 lines
733 B
JSON
Raw Normal View History

2022-11-11 21:39:28 +01:00
{
"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 09:16:54 +02:00
"jsx": "preserve",
"paths": {
2023-10-14 03:00:49 +02:00
"@/*": ["./*"],
2024-04-17 18:18:45 +02:00
"@common/*": ["../common/*"],
"@components/*": ["./components/*"],
"@lib/utils": ["./lib/utils/*"]
2023-08-30 09:16:54 +02:00
}
2022-11-11 21:39:28 +01:00
},
2023-10-25 13:44:22 +02:00
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"../app.module.ts",
"../common/**/*"
],
2022-11-11 21:39:28 +01:00
"exclude": ["node_modules"]
}