-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjsconfig.json
More file actions
39 lines (39 loc) · 1.85 KB
/
jsconfig.json
File metadata and controls
39 lines (39 loc) · 1.85 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
{
"compilerOptions": {
"checkJs": true,
"declaration": true,
"declarationMap": true,
"declarationDir": "types",
"skipLibCheck": true,
"strictNullChecks": true,
"noImplicitThis": true,
"moduleResolution": "nodenext",
"module": "nodenext",
"target": "esnext",
"lib": ["es6", "es2022", "dom"]
},
"include": [
"node_modules/@helios-lang/cbor/src/**/*.js",
"node_modules/@helios-lang/codec-utils/src/**/*.js",
"node_modules/@helios-lang/compiler/src/**/*.js",
"node_modules/@helios-lang/compiler-utils/src/**/*.js",
"node_modules/@helios-lang/contract-utils/src/index.js",
"node_modules/@helios-lang/contract-utils/src/artifacts/**/*.js",
"node_modules/@helios-lang/contract-utils/src/cast/**/*.js",
"node_modules/@helios-lang/contract-utils/src/codegen/**/*.js",
"node_modules/@helios-lang/contract-utils/src/compiler/**/*.js",
"node_modules/@helios-lang/contract-utils/src/context/index.js",
"node_modules/@helios-lang/contract-utils/src/context/CacheEntry.js",
"node_modules/@helios-lang/contract-utils/src/context/ContractContextBuilder.js",
"node_modules/@helios-lang/contract-utils/src/context/ContractContextCache.js",
"node_modules/@helios-lang/contract-utils/src/context/DagCompiler.js",
"node_modules/@helios-lang/crypto/src/**/*.js",
"node_modules/@helios-lang/era/src/**/*.js",
"node_modules/@helios-lang/ir/src/**/*.js",
"node_modules/@helios-lang/ledger/src/**/*.js",
"node_modules/@helios-lang/tx-utils/src/**/*.js",
"node_modules/@helios-lang/type-utils/src/**/*.js",
"node_modules/@helios-lang/uplc/src/**/*.js"
],
"exclude": ["node_modules/@helios-lang/type-utils/src/typedoc-external-links-resolver.js"]
}