-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
70d2824
commit bb41831
Showing
3 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
*.iml | ||
.DS_Store | ||
.idea/ | ||
ts-build | ||
|
||
docs/book/ | ||
docs/src/version.md | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"runOptions": { | ||
"runOn": "folderOpen" | ||
}, | ||
"type": "typescript", | ||
"tsconfig": "code/workspaces/tsconfig.json", | ||
"option": "watch", | ||
"problemMatcher": [ | ||
"$tsc-watch" | ||
], | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
}, | ||
"label": "tsc static analysis" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
// vscode: | ||
// There is a build task in .vscode/tasks.json which will run tsc in watch mode and report problems. | ||
// To enable the task to run automatically, run the command 'Tasks: Manage Automatic Tasks in Folder', and allow. | ||
// To stop the task, go to Terminal > Task - tsc static analysis and press ctrl-c. | ||
"compilerOptions": { | ||
"outDir": "./ts-build", | ||
"composite": true, | ||
"allowJs": true, | ||
"checkJs": true, | ||
"jsx": "preserve", | ||
"target": "es2019", | ||
"strict": true, | ||
"noImplicitAny": false, | ||
"noImplicitThis": false, | ||
"esModuleInterop": true, | ||
"moduleResolution": "node", | ||
"resolveJsonModule": true | ||
}, | ||
"include": [ | ||
"./*/src/**/*" | ||
], | ||
"exclude": [ | ||
"**/node_modules", | ||
"**/*.spec.js", | ||
"**/__mocks__", | ||
"**/*.min.js" | ||
] | ||
} |