-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
33 lines (31 loc) · 955 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
{
"paths": ["lib/**"],
"exclude": ["./lib/server/usage-testing-project"],
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "nodenext",
"outDir": "./out",
"skipLibCheck": true,
"declaration": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"alwaysStrict": true,
"noImplicitReturns": true,
"allowUnreachableCode": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true
},
"include": [
"./lib/client/vscode",
"./lib/template-language-service",
"./lib/custom-elements-languageserver-core",
"./lib/server"
]
}