2024-06-02 12:34:08 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ES2022",
|
|
|
|
"lib": ["ES2022"],
|
|
|
|
"module": "Node16",
|
|
|
|
"moduleResolution": "Node16",
|
|
|
|
"rootDir": "src",
|
|
|
|
"outDir": "dist",
|
|
|
|
"esModuleInterop": true,
|
2024-06-04 19:42:40 +00:00
|
|
|
"isolatedModules": true,
|
2024-06-02 12:34:08 +00:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"strict": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"allowSyntheticDefaultImports": true
|
|
|
|
},
|
|
|
|
"include": ["src/**/*"],
|
|
|
|
"exclude": ["node_modules"]
|
|
|
|
}
|