chore(tests): cleanup tsconfig

Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
braks
2023-02-22 20:20:11 +01:00
committed by Braks
parent eea05f9738
commit 98db749e51
5 changed files with 36 additions and 24 deletions
+5 -3
View File
@@ -10,12 +10,14 @@
"@vue-flow/background": "workspace:*",
"@vue-flow/controls": "workspace:*",
"@vue-flow/core": "workspace:*",
"@tooling/eslint-config": "workspace:*",
"@vue-flow/minimap": "workspace:*"
},
"devDependencies": {
"@tooling/eslint-config": "workspace:*",
"@tooling/tsconfig": "workspace:*",
"@vitejs/plugin-vue": "^4.0.0",
"cypress": "^12.3.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"@vitejs/plugin-vue": "^4.0.0"
"vite": "^4.1.4",
"eslint-plugin-chai-friendly": "^0.7.2"
}
}
+6 -18
View File
@@ -1,25 +1,13 @@
{
"extends": "@tooling/tsconfig/base",
"compilerOptions": {
"baseUrl": ".",
"module": "ESNext",
"target": "es2017",
"lib": [
"DOM",
"ESNext"
],
"noEmit": true,
"declaration": false,
"strict": true,
"esModuleInterop": true,
"incremental": false,
"skipLibCheck": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"noUnusedLocals": false,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"types": [
"vite/client"
],
},
"references": [
{
"path": "./tsconfig.node.json"
}
]
}
+11
View File
@@ -0,0 +1,11 @@
{
"compilerOptions": {
"composite": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true
},
"include": ["vite.config.ts"],
"files": ["package.json"]
}