forked from Azure/autorest.typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.browser-test.json
More file actions
33 lines (33 loc) · 863 Bytes
/
tsconfig.browser-test.json
File metadata and controls
33 lines (33 loc) · 863 Bytes
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": {
"skipLibCheck": true,
"alwaysStrict": true,
"forceConsistentCasingInFileNames": false,
"module": "commonjs",
"noEmitOnError": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"sourceMap": true,
"declarationMap": false,
"strict": true,
"declaration": true,
"stripInternal": true,
"noEmitHelpers": false,
"target": "es6",
"types": ["node", "mocha"],
"lib": ["ESNext.AsyncIterable", "DOM"],
"experimentalDecorators": true,
"newLine": "LF",
"outDir": "./test-browser",
"rootDir": "./test",
"useUnknownInCatchVariables": false
},
"include": ["test/**/*.ts"],
"exclude": [
"test/smoke/**/*.ts",
"test/**/test/**/*.ts",
"test/unit/**/*.ts",
"test/commands/**/*.ts"
]
}