chore: add back test/tsconfig.json and upgrade @types/node

This commit is contained in:
Alessio Gravili
2024-03-18 14:56:13 -04:00
parent 034e85aa87
commit cc1cbd1ed7
3 changed files with 101 additions and 81 deletions

21
test/tsconfig.json Normal file
View File

@@ -0,0 +1,21 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"noEmit": false /* Do not emit outputs. */,
"emitDeclarationOnly": true,
"outDir": "./dist" /* Specify an output folder for all emitted files. */,
"rootDir": "../" /* Specify the root folder within your source files. */
},
"exclude": ["dist", "build", "node_modules", ".eslintrc.js"],
"include": [
"./**/*.ts",
"./**/*.tsx",
"../packages/**/src/**/*.ts",
"../packages/**/src/**/*.tsx"
],
"plugins": [
{
"name": "next"
}
]
}