plane/packages/tsconfig/react-library.json
2023-11-08 22:45:27 +05:30

17 lines
355 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "React Library",
"extends": "./base.json",
"compilerOptions": {
"jsx": "react-jsx",
"strict": true,
"lib": ["ES2015", "DOM"],
"module": "ESNext",
"target": "es6",
"sourceMap": true,
"paths": {
"react": [ "./node_modules/@types/react" ]
}
}
}