mirror of
https://github.com/ivuorinen/sysvinit-service-generator.git
synced 2026-02-16 09:52:35 +00:00
fix: resolve tsconfig parsing issues (#88)
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"extends": "./tsconfig.node.json",
|
||||
"include": [
|
||||
"src/**/*.ts",
|
||||
"src/**/*.tsx",
|
||||
@@ -12,6 +11,14 @@
|
||||
"node_modules"
|
||||
],
|
||||
"compilerOptions": {
|
||||
"lib": ["es2023"]
|
||||
"target": "ES2022",
|
||||
"lib": ["es2023"],
|
||||
"module": "ESNext",
|
||||
"moduleResolution": "Bundler",
|
||||
"strict": true,
|
||||
"strictNullChecks": true,
|
||||
"esModuleInterop": true,
|
||||
"skipLibCheck": true,
|
||||
"types": ["node"]
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user