-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
50 lines (50 loc) · 1.84 KB
/
Copy pathtsconfig.json
File metadata and controls
50 lines (50 loc) · 1.84 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"compileOnSave": false,
"compilerOptions": {
// "allowImportingTsExtensions": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"alwaysStrict": true,
"baseUrl": ".",
"declaration": true,
"esModuleInterop": true,
"exactOptionalPropertyTypes": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"lib": ["ESNext"],
"module": "ESNext",
"moduleDetection": "force",
"moduleResolution": "Bundler",
// "noEmit": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": false,
"noImplicitThis": true,
"noPropertyAccessFromIndexSignature": true,
// "noUnusedLocals": true,
// "noUnusedParameters": true,
"outDir": "packages/vscode/dist",
"paths": {
"#grammar": ["packages/grammar/*", "packages/grammar/index"],
"#typing": ["packages/typing/*", "packages/typing/index"],
"#common": ["packages/common/*", "packages/common/index"],
"#diagnostic": ["packages/diagnostic/*", "packages/diagnostic/index"],
"#analyzer": ["packages/analyzer/*", "packages/analyzer/index"],
"#interpreter": ["packages/interpreter/*", "packages/interpreter/index"],
"#translator": ["packages/translator/*", "packages/translator/index"],
"#language-adapter": ["packages/language-adapter/*", "packages/language-adapter/index"],
"#vscode": ["packages/vscode/*", "packages/vscode/index"],
"#xon-lib": ["packages/xon-lib/*", "packages/xon-lib/index"]
},
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "ESNext",
"useDefineForClassFields": true,
"useUnknownInCatchVariables": true
},
// "include": ["src/**/*.ts", "../common/**/*.ts"],
"exclude": ["**/*.gen.ts", "**/dist/*.ts"]
}