mirror of
https://github.com/ivuorinen/sysvinit-service-generator.git
synced 2026-01-26 03:24:03 +00:00
26 lines
530 B
JSON
26 lines
530 B
JSON
{
|
|
"include": [
|
|
"vite.config.*",
|
|
"vitest.config.*",
|
|
"cypress.config.*",
|
|
"nightwatch.conf.*",
|
|
"playwright.config.*"
|
|
],
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "Bundler",
|
|
"composite": true,
|
|
"noEmit": true,
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
|
|
"lib": ["es2023"],
|
|
"module": "ESNext",
|
|
"types": [
|
|
"node"
|
|
]
|
|
}
|
|
}
|