2023-04-25 02:53:36 +03:00
|
|
|
{
|
2023-10-18 18:30:08 +03:00
|
|
|
"extends": "../../../tsconfig.json",
|
2023-04-25 02:53:36 +03:00
|
|
|
"compilerOptions": {
|
|
|
|
"composite": true,
|
|
|
|
"target": "ESNext",
|
|
|
|
"module": "ESNext",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"moduleResolution": "Node",
|
2023-05-31 15:49:56 +03:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2023-07-04 19:59:00 +03:00
|
|
|
"noEmit": false,
|
2023-08-22 18:16:26 +03:00
|
|
|
"outDir": "./lib/scripts",
|
2023-10-18 09:13:47 +03:00
|
|
|
"types": ["node"],
|
2023-08-22 18:16:26 +03:00
|
|
|
"allowJs": true
|
2023-04-25 02:53:36 +03:00
|
|
|
},
|
2023-10-18 09:13:47 +03:00
|
|
|
"include": [
|
|
|
|
"./scripts",
|
|
|
|
"esbuild.main.config.ts",
|
|
|
|
"esbuild.plugin.config.ts"
|
|
|
|
],
|
|
|
|
"ts-node": {
|
|
|
|
"esm": true,
|
|
|
|
"experimentalSpecifierResolution": "node"
|
|
|
|
}
|
2023-04-25 02:53:36 +03:00
|
|
|
}
|