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

25 lines
613 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": {
"@/*": ["./src/*"],
"@common/*": ["../common/*"]
}
2022-11-12 02:09:28 +05:30
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "../app.module.ts"],
"exclude": ["node_modules"]
}