1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-14 10:47:56 +01:00
upscayl/renderer/tsconfig.json

25 lines
609 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
"@/*": ["./*"],
2023-08-30 09:16:54 +02:00
"@common/*": ["../common/*"]
}
2022-11-11 21:39:28 +01:00
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "../app.module.ts"],
"exclude": ["node_modules"]
}