-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtsconfig.json
30 lines (30 loc) · 857 Bytes
/
tsconfig.json
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
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"lib": ["esnext", "dom", "dom.iterable"],
"module": "Preserve",
"moduleResolution": "bundler",
"moduleDetection": "force",
"target": "es2020",
"allowImportingTsExtensions": false,
"allowJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"incremental": false,
"isolatedModules": true,
"jsx": "preserve",
"noUncheckedIndexedAccess": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"useDefineForClassFields": true,
"verbatimModuleSyntax": true,
"types": ["./reset.d.ts"],
"noEmit": true,
"paths": {
"@swarmnode-ai/sdk": ["./src"],
"@swarmnode-ai/sdk/*": ["./src/*"]
}
},
"include": ["**/*.ts", "**/*.js", "eslint.config.js"]
}