graspologic-js/tsconfig.json

17 строки
463 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Node",
"declaration": true,
"jsx": "react-jsx",
"lib": ["DOM", "ESNext"],
// SDI covers over esm support flaws. Libraries should not ship with SDI enabled if it's at all possible.
// However, application code can use it to write idiomatic react imports.
"allowSyntheticDefaultImports": false,
"forceConsistentCasingInFileNames": true,
"strict": true
}
}