-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathtsconfig.json
33 lines (33 loc) · 966 Bytes
/
tsconfig.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
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"outDir": "out",
"noLib": false,
"sourceMap": true,
"noUnusedLocals": true,
"strict": true,
"alwaysStrict": true,
"typeRoots": [
"./node_modules/@types",
// This is needed because ts-node ignores files which are not
// discoverable through dependencies (which means it won't find
// *.d.ts files, even though tsc would). But doing it this way means
// that you can't simply have loose .d.ts files under ./typings, they
// must instead be structured as node modules with separate folders
// and index.d.ts files
"./typings"
]
},
"include": [
"src",
"test",
"extension.bundle.ts"
],
"exclude": [
"node_modules",
"out",
"typings",
".vscode-test",
]
}