forked from Bryan-Roe-ai/semantic-kernel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jsconfig.json
34 lines (31 loc) · 1.03 KB
/
jsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
// This file is a configuration file for javascript projects. We will set some
// (https://code.visualstudio.com/docs/languages/jsconfig) and edit this file as
// you prefer.
"compilerOptions": {
// If you want a strict type check for your javascript files, enable this option.
// VSCode will analyse your code and try to give you hints about possible errors
// and misusage of variables and functions
// "checkJs": true,
// This option helps you to prevent missing typical mistakes like assignment to
// not defined variables. For more information see
// https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Strict_mode
// Note: This option just activates the strict linting for vscode. You still have
"strict": true,
"module": "commonjs",
"target": "es6",
"allowJs": true,
"resolveJsonModule": true,
"moduleResolution": "node",
"baseUrl": "."
},
"include": [
"./**/*.js",
"./**/*.ts",
"./**/*.d.ts"
],
"exclude": [
"node_modules",
"dist"
]
}