feat: initial structure

This commit is contained in:
Garny 2026-03-31 22:31:16 +05:00
commit 6f361dd723
7 changed files with 3199 additions and 0 deletions

35
tsconfig.json Normal file
View file

@ -0,0 +1,35 @@
{
"compilerOptions": {
"checkJs": true,
"allowJs": true,
"target": "es2021",
"module": "commonjs",
"lib": [
"es2021"
],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"typeRoots": [
"./node_modules/@types",
"./types"
],
"baseUrl": ".",
"paths": {
"@jetbrains/youtrack-scripting-api": [
"node_modules/youtrack-workflow-api-types"
],
"@jetbrains/youtrack-scripting-api/*": [
"node_modules/youtrack-workflow-api-types/*"
]
}
},
"include": [
"**/*.js"
],
"exclude": [
"node_modules"
]
}