-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.node.json
More file actions
33 lines (33 loc) · 864 Bytes
/
tsconfig.node.json
File metadata and controls
33 lines (33 loc) · 864 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
31
32
33
{
"compilerOptions": {
"target": "es2021",
"lib": ["es2021"],
"module": "commonjs",
"moduleResolution": "node",
"resolveJsonModule": true,
"allowJs": true,
"checkJs": false,
"outDir": "./dist",
"rootDir": "./src",
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"types": ["node"]
},
"include": ["src/index.ts", "src/node/**/*", "src/utils/**/*", "src/forwarder/**/*", "src/contracts/**/*"],
"exclude": [
"src/cloudflare/**/*",
"src/Operator.ts",
"src/OperatorManager.ts",
"src/CharacterOperator.ts",
"src/BattleOperator.ts",
"src/ActOperator.ts",
"src/EventAggregator.ts",
"src/Env.ts",
"src/**/*.test.ts",
"src/**/*.spec.ts"
]
}