Files
module_manager/tsconfig.node.json
Sebastian 2c571a8fbc
Build Test / test (pull_request) Successful in 41s
JS Unit Tests / test (pull_request) Successful in 45s
chore: implement js test suites
Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
2026-07-24 00:32:56 -04:00

22 lines
471 B
JSON

{
"include": [
"vite.config.*",
"vitest.config.*",
"cypress.config.*",
"nightwatch.conf.*",
"playwright.config.*"
],
"compilerOptions": {
"target": "ES2023",
"lib": ["ES2023"],
"skipLibCheck": true,
"composite": true,
"noEmit": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"module": "ESNext",
"moduleResolution": "Bundler",
"moduleDetection": "force",
"types": ["node"]
}
}