-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathtsconfig.json
More file actions
33 lines (33 loc) · 1.07 KB
/
tsconfig.json
File metadata and controls
33 lines (33 loc) · 1.07 KB
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": {
"baseUrl": ".",
"outDir": "build/extension",
"module": "esnext",
"target": "es2018",
"lib": ["ESNext", "dom"],
"alwaysStrict": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"allowJs": true,
"jsx": "react",
"moduleResolution": "bundler",
"rootDir": ".",
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"noFallthroughCasesInSwitch": true,
"strictPropertyInitialization": true,
"typeRoots": ["node_modules/@types", "src/typings/"],
"paths": {
"testsutil/*": ["testsutil/*"]
}
},
"include": ["**/src/**/*", "webpack.*.js", "e2e/**/*"],
"exclude": ["out", "node_modules", "build", "scripts", "webpack", "jest", ".vscode-test"]
}