add ignoreDeprecations option to tsconfig files

This commit is contained in:
Mohammad Khyata 2026-05-01 11:23:23 +03:00
parent 97364f4734
commit c5d406792f
2 changed files with 3 additions and 1 deletions

View File

@ -18,6 +18,7 @@
"name": "next"
}
],
"ignoreDeprecations": "5.0",
"baseUrl": ".",
"paths": {
"@/*": ["./*"]

View File

@ -1,8 +1,9 @@
{
"extends": "@repo/typescript-config/base.json",
"extends": "../typescript-config/base.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": ".",
"ignoreDeprecations": "5.0",
"baseUrl": ".",
"module": "ESNext",
"moduleResolution": "Bundler"