14 lines
270 B
JSON
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"]
|
|
}
|