-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.json
More file actions
37 lines (32 loc) · 858 Bytes
/
tsconfig.json
File metadata and controls
37 lines (32 loc) · 858 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
34
35
36
37
{
// "extends": "./node_modules/@lume/cli/config/ts.config.json",
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"declaration": false,
"declarationMap": false,
"sourceMap": true,
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "Node",
"lib": ["DOM", "ES2022"],
"verbatimModuleSyntax": true,
"skipLibCheck": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
// disable global types, use import syntax instead of globals
"types": [],
// "preserveSymlinks": true, // makes no difference for meteor types for me.
"paths": {
"meteor/*": [
//
"./node_modules/@types/meteor/*",
// This is from zodern:types. It appears to not do anything
// though??? Plus missing packages???
"./.meteor/local/types/packages.d.ts"
]
}
},
"include": ["./**/*.ts"]
}