You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
402 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"types": ["node"],
"strict": true,
"baseUrl": "./",
"typeRoots": [
"./node_modules/@types",
"./src/types" // Add the path to your declaration files here
]
},
"include": [
"src/**/*",
"src/types/**/*" // Ensure this is included if declaration files are in a different directory
]
}