18 lines
495 B
JSON
18 lines
495 B
JSON
{
|
|
"extends": "@tsconfig/node22/tsconfig.json",
|
|
"include": ["vite.config.*", "vitest.config.*", "cypress.config.*", "nightwatch.conf.*", "playwright.config.*", "eslint.config.*", "types/**/*.ts"],
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
|
|
|
|
"module": "ESNext",
|
|
"strict": false,
|
|
"moduleResolution": "Bundler",
|
|
"types": ["node"],
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"#/*": ["types/*"]
|
|
}
|
|
}
|
|
}
|