feat: initial structure
This commit is contained in:
commit
6f361dd723
7 changed files with 3199 additions and 0 deletions
35
tsconfig.json
Normal file
35
tsconfig.json
Normal 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"
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue