UNPKG

732 BJSONView Raw
1{
2 "compilerOptions": {
3 "target": "esnext",
4 "module": "commonjs",
5 "moduleResolution": "node",
6
7 "lib": ["es5", "es2015"],
8 "typeRoots": ["./node_modules/@neo-one/smart-contract"],
9
10 "pretty": true,
11
12 "noEmit": true,
13 "declaration": false,
14
15 "allowSyntheticDefaultImports": true,
16 "resolveJsonModule": false,
17 "experimentalDecorators": true,
18
19 "alwaysStrict": true,
20 "strict": true,
21 "skipLibCheck": true,
22 "noUnusedLocals": true,
23 "noImplicitReturns": true,
24 "allowUnusedLabels": false,
25 "noUnusedParameters": false,
26 "allowUnreachableCode": false,
27 "noFallthroughCasesInSwitch": true,
28 "forceConsistentCasingInFileNames": true
29 },
30 "exclude": [
31 "**/*"
32 ]
33}