global: remove maxNodeModuleJsDepth from tsconfig

This commit is contained in:
Abdullah Atta
2023-08-12 21:17:45 +05:00
committed by Abdullah Atta
parent 81fc56937e
commit 0417981538
9 changed files with 2 additions and 20 deletions

View File

@@ -6,7 +6,6 @@
"baseUrl": "./",
"jsx": "react-native",
"noEmit": true,
"maxNodeModuleJsDepth": 5,
"types": ["node", "jest", "detox"],
"paths": {
"@notesnook/*": ["../../packages"],

View File

@@ -2,11 +2,8 @@
"extends": "../../tsconfig",
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"jsx": "react-jsx",
"maxNodeModuleJsDepth": 10,
"noEmit": true,
"downlevelIteration": true
"noEmit": true
},
"include": ["src"]
}

View File

@@ -2,9 +2,7 @@
"extends": "../../tsconfig",
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"jsx": "react-jsx",
"maxNodeModuleJsDepth": 5,
"noEmit": true
},
"include": ["src"]

View File

@@ -4,7 +4,6 @@
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"jsx": "react-jsx",
"maxNodeModuleJsDepth": 5,
"noEmit": true
},
"include": ["src", "global.d.ts", "__tests__", "__e2e__"]

View File

@@ -2,9 +2,7 @@
"extends": "../../tsconfig",
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"jsx": "react-jsx",
"maxNodeModuleJsDepth": 5,
"outDir": "./dist"
},
"include": ["src", "global.d.ts"]

View File

@@ -2,9 +2,6 @@
"extends": "../../tsconfig",
"compilerOptions": {
"outDir": "./dist",
"maxNodeModuleJsDepth": 10,
"downlevelIteration": true,
"allowJs": true,
"jsx": "react-jsx"
},
"include": ["src/"]

View File

@@ -2,10 +2,7 @@
"extends": "../../tsconfig",
"compilerOptions": {
"outDir": "./dist",
"maxNodeModuleJsDepth": 10,
"downlevelIteration": true,
"allowJs": true,
"jsx": "react-jsx"
"allowJs": true
},
"exclude": ["src/**/*.test.js", "src/**/*.test.skip.js"],
"include": ["src/"]

View File

@@ -5,8 +5,6 @@
"lib": ["dom", "dom.iterable", "esnext"],
"jsx": "react-jsx",
"noEmit": true,
"downlevelIteration": true,
"maxNodeModuleJsDepth": 5,
"allowJs": true
},
"include": ["src/"]

View File

@@ -11,7 +11,6 @@
"noFallthroughCasesInSwitch": true,
"resolveJsonModule": true,
"isolatedModules": true,
"downlevelIteration": true,
"declaration": true,
"removeComments": false
}