Files
noteflow/client/tsconfig.node.json
2026-01-14 23:23:01 -05:00

33 lines
738 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2023"],
"module": "ESNext",
"skipLibCheck": true,
"types": ["node", "@wdio/globals/types", "@wdio/mocha-framework"],
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
/* Linting */
"strict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": true
},
"include": [
"playwright.config.ts",
"vite.config.ts",
"tailwind.config.ts",
"vitest.config.ts",
"wdio.conf.ts",
"wdio.mac.conf.ts",
"e2e-native/**/*.ts",
"e2e-native-mac/**/*.ts"
]
}