/ tableland / tsconfig.json
tsconfig.json
 1  {
 2    "compilerOptions": {
 3      "target": "ES2022",
 4      "module": "ESNext",
 5      "lib": ["ES2022"],
 6      "moduleResolution": "node",
 7      "esModuleInterop": true,
 8      "allowSyntheticDefaultImports": true,
 9      "strict": true,
10      "skipLibCheck": true,
11      "forceConsistentCasingInFileNames": true,
12      "resolveJsonModule": true,
13      "noEmit": true,
14      "types": ["node"]
15    },
16    "ts-node": {
17      "esm": true,
18      "experimentalSpecifierResolution": "node"
19    },
20    "include": [
21      "*.ts"
22    ]
23  }