You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* chore: align on vitest versions across the repo, add project vitest config
* Apply suggestion from @cacieprins
* Apply suggestion from @cacieprins
* Apply suggestion from @cacieprins
* Apply suggestion from @cacieprins
* Update package.json
* lockfile, align vite with vitest
* add vitest configs to pkgs that were missing it
* update build scripts
* fix test pattern for vite-dev-server
* correct the path for packages/types tests
* downgrade vite-dev-server to vitest 2
// "baseUrl": "./", /* Base directory to resolve non-absolute module names. */
32
-
// "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
33
-
// "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */
34
-
// "typeRoots": [], /* List of folders to include type definitions from. */
35
-
"types": ["cypress"] /* Type declaration files to be included in compilation. */,
36
-
"allowSyntheticDefaultImports": true/* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */,
37
-
// "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */
38
-
39
-
/* Source Map Options */
40
-
// "sourceRoot": "./", /* Specify the location where debugger should locate TypeScript files instead of source locations. */
41
-
// "mapRoot": "./", /* Specify the location where debugger should locate map files instead of generated locations. */
42
-
// "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */
43
-
// "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */
44
-
45
-
/* Experimental Options */
46
-
// "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
47
-
"esModuleInterop": true,
48
-
/** Allows us to strip internal types sourced from webpack */
49
-
"stripInternal": true,
50
-
"ignoreDeprecations": "5.0",
51
-
/*
52
-
* TODO: remove importsNotUsedAsValues after typescript 5.5 and up as it will no longer work. If we want the same behavior
53
-
* as importsNotUsedAsValues, we need to use "verbatimModuleSyntax", which will require this package to be an ES Module.
54
-
*/
55
-
"importsNotUsedAsValues": "error",
56
-
/* skips checking declaration types. we skip this because we have multiple versions of vite installed as dev dependencies */
0 commit comments