sdk-ts/tsconfig.json

24 lines
508 B
JSON
Raw Permalink Normal View History

2023-12-04 21:56:52 +00:00
{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"module": "ESNext",
2023-12-05 06:53:54 +00:00
"lib": ["ES2022", "DOM", "DOM.Iterable"],
2023-12-04 21:56:52 +00:00
"skipLibCheck": true,
"composite": true,
"outDir": "dist/",
2023-12-05 10:58:51 +00:00
"sourceMap": true,
2023-12-04 21:56:52 +00:00
/* Bundler mode */
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
/* Linting */
"strict": true,
"strictNullChecks": true,
2023-12-05 06:53:54 +00:00
"noFallthroughCasesInSwitch": true,
2023-12-04 21:56:52 +00:00
},
"include": ["src"],
}