19 lines
329 B
JSON
19 lines
329 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"types": [
|
|
"node"
|
|
],
|
|
"outDir": "dist"
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
]
|
|
}
|