update tsconfig to include js file and exclude .next , out and thirdparty folders

This commit is contained in:
Abhinav 2022-11-22 19:57:31 +05:30
parent ce97bd2d33
commit 352b949386

View file

@ -20,6 +20,6 @@
"downlevelIteration": true,
"incremental": true
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "**/*.js"],
"exclude": ["node_modules", "out", ".next", "thirdparty"]
}