20 lines
439 B
JSON
20 lines
439 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"strict": true,
|
|
"jsx": "react-jsx",
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"baseUrl": "./src",
|
|
"paths": {
|
|
"@lib-public/*": ["lib-public/*"],
|
|
"@lib-private/*": ["lib-private/*"]
|
|
},
|
|
"include": ["src"]
|
|
}
|
|
}
|