-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathtsconfig.json
More file actions
42 lines (40 loc) · 1.04 KB
/
tsconfig.json
File metadata and controls
42 lines (40 loc) · 1.04 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
{
"compilerOptions": {
/* Basic Options */
"target": "es2019",
"module": "esNext",
"lib": ["esnext", "dom"],
"jsx": "react-jsx",
"noEmit": true,
"allowImportingTsExtensions": true,
/* Strict Type-Checking Options */
"strict": true,
"strictNullChecks": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noImplicitThis": true,
"noUncheckedIndexedAccess": true,
/* Module Resolution Options */
"moduleResolution": "bundler",
"resolveJsonModule": true,
"types": ["node", "mocha"],
"esModuleInterop": true,
"preserveSymlinks": true,
"paths": {
"meteor/*": ["./.meteor/local/types/packages.d.ts"]
}
},
"exclude": [
"./.meteor/local/build/**",
"./.meteor/local/bundler-cache/**",
"./packages/**",
"./eslint.config.mts",
"./eslint/**"
]
}