-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathtsconfig.json
More file actions
20 lines (18 loc) · 1.39 KB
/
Copy pathtsconfig.json
File metadata and controls
20 lines (18 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"extends": "./tsconfig.base.json",
// "include": ["4-layered/src/**/*", "constants", "utils", "trading-modules/trading", "streaming", "token-filters", "raydium", "jito", "4-layered/main-algo"],
//"exclude": ["node_modules"],
"compilerOptions": {
"module": "es2022",
"target": "es2022",
"allowJs": true, /* Specify what module code is generated. */
"moduleResolution": "node", /* Specify what module code is generated. */ /* Allow 'import x from y' when a module doesn't have a default export. */
"esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */
// "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
/* Type Checking */
//"strict": true,
"strictNullChecks": false, // Add this /* Enable all strict type-checking options. */ /* Skip type checking .d.ts files that are included with TypeScript. */
"skipLibCheck": true /* Skip type checking all .d.ts files. */
}
}