Skip to content

Commit

Permalink
test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AlemTuzlak committed Sep 27, 2024
1 parent 2ca0c84 commit 82fea1c
Showing 1 changed file with 36 additions and 36 deletions.
72 changes: 36 additions & 36 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,38 +1,38 @@
{
"compilerOptions": {
/* Language and Environment */
"target": "ES2022" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
"lib": [
"dom",
"dom.iterable",
"esnext",
] /* Specify a set of bundled library declaration files that describe the target runtime environment. */,
"jsx": "react-jsx",
"module": "ESNext" /* Specify what module code is generated. */,
"rootDir": "./src" /* Specify the root folder within your source files. */,
"moduleResolution": "Bundler" /* Specify how TypeScript looks up a file from a given module specifier. */,
"types": ["vitest/globals", "vite/client"],
"declaration": true /* Generate .d.ts files from TypeScript and JavaScript files in your project. */,
"outDir": "./dist" /* Specify an output folder for all emitted files. */,
// "removeComments": true, /* Disable emitting comments. */
"noEmit": true /* Disable emitting files from a compilation. */,
"esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */,
// "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true /* Skip type checking all .d.ts files. */,
},
"exclude": [
"./bin/**/*.test.ts",
"./dist/**/*",
"./bin/mocks/**/*",
"./*.config.ts",
"./test-apps/**/*",
"./plugins/**/*",
"./src/external/**/*",
"./scripts",
"./docs",
"tsup*.ts",
"test-apps",
],
"compilerOptions": {
/* Language and Environment */
"target": "ES2022" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
"lib": [
"dom",
"dom.iterable",
"esnext"
] /* Specify a set of bundled library declaration files that describe the target runtime environment. */,
"jsx": "react-jsx",
"module": "ESNext" /* Specify what module code is generated. */,
"rootDir": "./src" /* Specify the root folder within your source files. */,
"moduleResolution": "Bundler" /* Specify how TypeScript looks up a file from a given module specifier. */,
"types": ["vitest/globals", "vite/client"],
"declaration": true /* Generate .d.ts files from TypeScript and JavaScript files in your project. */,
"outDir": "./dist" /* Specify an output folder for all emitted files. */,
// "removeComments": true, /* Disable emitting comments. */
"noEmit": true /* Disable emitting files from a compilation. */,
"esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */,
// "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true /* Skip type checking all .d.ts files. */
},
"exclude": [
"./bin/**/*.test.ts",
"./dist/**/*",
"./bin/mocks/**/*",
"./*.config.ts",
"./test-apps/**/*",
"./plugins/**/*",
"./src/external/**/*",
"./scripts",
"./docs",
"tsup*.ts",
"test-apps"
]
}

0 comments on commit 82fea1c

Please sign in to comment.