video-flow-toon/web-core/tsconfig.node.json
zyc 88ea709bbb
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 3m32s
Track web-core frontend source
2026-05-28 10:45:51 +08:00

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
}
}