2023-10-02 06:28:18 +03:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"strict": true,
|
2025-10-25 03:30:16 +03:00
|
|
|
"module": "nodenext",
|
2025-10-22 01:19:36 +03:00
|
|
|
"moduleResolution": "nodenext",
|
2025-06-23 12:47:35 +02:00
|
|
|
"target": "es2022",
|
2023-10-02 06:28:18 +03:00
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"typeRoots": [
|
|
|
|
|
"./node_modules/@types",
|
2025-06-23 12:42:25 +02:00
|
|
|
"./scripts/types"
|
2023-10-02 06:28:18 +03:00
|
|
|
],
|
2025-06-23 12:42:25 +02:00
|
|
|
"allowJs": true,
|
2025-06-29 00:17:31 +02:00
|
|
|
"outDir": "./dist"
|
2025-06-23 12:42:25 +02:00
|
|
|
},
|
2025-06-29 00:17:31 +02:00
|
|
|
"include": ["scripts/**/*", "src/**/*"],
|
2025-06-23 12:42:25 +02:00
|
|
|
"exclude": ["node_modules", "dist"]
|
2023-10-02 06:28:18 +03:00
|
|
|
}
|