DocSpace-client/packages/client/tsconfig.json
2023-06-09 13:24:36 +03:00

21 lines
395 B
JSON

{
"compilerOptions": {
"outDir": "./dist/",
"target": "es2016",
"jsx": "react-jsx",
"module": "ESNext",
"baseUrl": "./",
"moduleResolution": "node",
"strict": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"skipLibCheck": true,
"allowJs": true,
"paths": {
"PUBLIC_DIR": ["../../public"],
"SRC_DIR": ["./src"]
}
}
}