22 lines
493 B
JSON
22 lines
493 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "react",
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"declaration": false,
|
|
"sourceMap": false,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"lib": ["ES2022", "DOM"],
|
|
"types": ["react", "react-dom"]
|
|
},
|
|
"include": ["src"],
|
|
"references": [
|
|
{ "path": "../../packages/shared" }
|
|
]
|
|
} |