15 lines
323 B
JSON
15 lines
323 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["ES2022"],
|
|
"module": "Node16",
|
|
"strict": true,
|
|
"noEmit": true
|
|
},
|
|
"include": ["src/**/*"] /* Include all files in the 'src' directory */,
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist"
|
|
] /* Exclude the 'node_modules' and 'dist' directories */
|
|
}
|