-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
tsconfig.json
41 lines (40 loc) · 1.17 KB
/
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
34
35
36
37
38
39
40
41
{
"ts-node": {
"transpileOnly": true
},
"compilerOptions": {
"target": "ES2020",
"lib": ["ES2020", "ES2021.String"],
"experimentalDecorators": true,
"baseUrl": "./",
"rootDir": ".",
"module": "commonjs",
// https://devblogs.microsoft.com/typescript/announcing-typescript-5-4/#auto-import-support-for-subpath-imports
// Seems like it doesnt work with CJS ? Not sure why. So let's duplicate
// the entries here for now
"paths": {
"#/*": ["./src/*"],
"#types/*": ["./src/types/*"],
"#vscode/*": ["./src/vscode/*"]
},
"resolveJsonModule": true,
"strict": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitThis": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"useUnknownInCatchVariables": true,
"outDir": "out",
"removeComments": true,
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true
},
"exclude": ["node_modules", ".vscode-test"]
}