mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-22 07:00:22 -05:00
7261dec8e0
* wip: shared frontend * update * update deps * share client * share urql client * add codegen to app * import client * add foo * add spec * update * remove old file * remove duplicated files * update files * remove unused files
60 lines
3.0 KiB
JSON
60 lines
3.0 KiB
JSON
{
|
|
"include": ["src/**/*.vue", "src/**/*.tsx", "cypress/**/*.ts"],
|
|
"compilerOptions": {
|
|
/* Basic Options */
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
/*
|
|
* Allow javascript files to be compiled.
|
|
* Override this in modules that need JS
|
|
*/
|
|
"noEmit": true,
|
|
"jsx": "preserve",
|
|
"preserveWatchOutput": true,
|
|
// "checkJs": true, /* Report errors in .js files. */
|
|
// "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
|
|
/* Generates corresponding '.d.ts' file. */
|
|
// "declaration": true,
|
|
// "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
|
|
/* Generates corresponding '.map' file. */
|
|
"sourceMap": true,
|
|
/* Import emit helpers from 'tslib'. */
|
|
"importHelpers": true,
|
|
"strictNullChecks": true,
|
|
// "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
|
|
// "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */
|
|
/* Strict Type-Checking Options */
|
|
// "traceResolution": true,
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"noImplicitThis": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
/**
|
|
* Skip type checking of all declaration files (*.d.ts).
|
|
* TODO: Look into changing this in the future
|
|
*/
|
|
/* Additional Checks */
|
|
"skipLibCheck": false,
|
|
/* Report errors on unused locals. */
|
|
// "noEmit": true,
|
|
"noUnusedLocals": false,
|
|
// "noUnusedParameters": true, /* Report errors on unused parameters. */
|
|
/* Report error when not all code paths in function return a value. */
|
|
"noImplicitReturns": true,
|
|
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
|
|
/* Module Resolution Options */
|
|
"moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
|
|
// "baseUrl": "./", /* Base directory to resolve non-absolute module names. */
|
|
// "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
|
|
// "rootDirs": ["../driver/src"], /* List of root folders whose combined content represents the structure of the project at runtime. */
|
|
// "typeRoots": [] /* List of folders to include type definitions from. */
|
|
"types": ["chrome", "./vue-shims", "./vite-env", "vite-plugin-icons", "@intlify/vite-plugin-vue-i18n/client", "@testing-library/cypress"], /* Type declaration files to be included in compilation. */
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"noErrorTruncation": true,
|
|
"experimentalDecorators": true,
|
|
"resolveJsonModule": true,
|
|
"importsNotUsedAsValues": "error"
|
|
}
|
|
}
|