zakscode/tsconfig.node.json

20 lines
323 B
JSON
Raw Normal View History

2024-01-03 23:49:28 -05:00
{
"extends": "@tsconfig/node18/tsconfig.json",
"include": [
"vite.config.*",
"vitest.config.*",
"cypress.config.*",
"nightwatch.conf.*",
"playwright.config.*"
],
"compilerOptions": {
"composite": true,
"noEmit": true,
2024-01-05 01:40:17 -05:00
"module": "ESNext",
2024-01-03 23:49:28 -05:00
"moduleResolution": "Bundler",
"types": [
"node"
]
}
}