This repository has been archived on 2026-01-31. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
nodejs-template-with-typesc…/tsconfig.json
2023-07-18 21:48:58 +02:00

14 lines
270 B
JSON

{
"compilerOptions": {
"target": "es2021",
"module": "commonjs",
"esModuleInterop": true,
"strict": true,
"outDir": "./build"
},
"include": [
"src/**/*.ts" // Update this to match your project structure
],
"exclude": ["node_modules"]
}