forked from microsoft/vscode-azurearmtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
27 lines (27 loc) · 860 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
{
"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"
]
}