All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 3m32s
38 lines
794 B
JSON
38 lines
794 B
JSON
{
|
|
"include": [
|
|
"vite.config.*",
|
|
"vitest.config.*",
|
|
"cypress.config.*",
|
|
"nightwatch.conf.*",
|
|
"playwright.config.*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/node_modules/*",
|
|
"dist",
|
|
"coverage",
|
|
"**/*.test.ts"
|
|
],
|
|
"compilerOptions": {
|
|
"ignoreDeprecations": "5.0",
|
|
"composite": true,
|
|
"noEmit": false,
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
|
|
"noImplicitAny": false,
|
|
"target": "ES2022",
|
|
"lib": [
|
|
"ES2023"
|
|
],
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"types": [
|
|
"node",
|
|
"vite/client"
|
|
],
|
|
"verbatimModuleSyntax": false,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true
|
|
}
|
|
} |