2023-02-28 03:08:05 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": true,
|
|
|
|
"checkJs": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"target": "ES2022",
|
2023-03-09 02:59:43 +01:00
|
|
|
"module": "ES2022",
|
2023-03-07 00:02:16 +01:00
|
|
|
"moduleResolution": "nodenext",
|
2023-02-28 03:08:05 +01:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2023-03-09 02:59:43 +01:00
|
|
|
"outDir": "./dist",
|
|
|
|
"rootDir": "src",
|
|
|
|
// "declaration": true
|
|
|
|
},
|
2023-03-09 04:18:34 +01:00
|
|
|
"ts-node": {
|
|
|
|
"esm": true
|
|
|
|
},
|
2023-03-09 02:59:43 +01:00
|
|
|
"include": ["src"],
|
|
|
|
"exclude": ["dist", "node_modules"]
|
2023-02-28 03:08:05 +01:00
|
|
|
}
|