forked from Agoric/agoric-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (30 loc) · 928 Bytes
/
tsconfig.json
File metadata and controls
30 lines (30 loc) · 928 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
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"moduleResolution": "bundler",
// This prevents checking of .d.ts files. We would like to check the ones we write
// but we leave this off because of the errors in deps we don't control.
"skipLibCheck": true,
"allowJs": true,
"checkJs": true,
"allowSyntheticDefaultImports": true,
"strict": false,
"downlevelIteration": true,
"strictNullChecks": true,
"noImplicitThis": true,
"noUncheckedSideEffectImports": true,
"erasableSyntaxOnly": true,
"verbatimModuleSyntax": true,
// .ts and rewriting relative paths allow us to include in bundles
// files that are JS executable (with TS chars blanked) but end in .ts
"allowImportingTsExtensions": true,
"rewriteRelativeImportExtensions": true,
"noEmit": true
},
"include": [
"eslint.config.mjs",
"dist",
"scripts"
]
}