the-abstraction-engine/tsconfig.json

28 lines
627 B
JSON
Raw Permalink Normal View History

2024-03-01 18:07:16 -05:00
{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
2024-03-03 16:20:36 -05:00
"noFallthroughCasesInSwitch": true,
"allowJs": true
2024-03-01 18:07:16 -05:00
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
}