DocSpace-client/packages/client/tsconfig.json

22 lines
430 B
JSON
Raw Normal View History

2023-06-09 10:24:36 +00:00
{
"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"],
2023-11-10 07:20:02 +00:00
"COMMON_DIR": ["../common"],
2023-06-09 10:24:36 +00:00
"SRC_DIR": ["./src"]
}
}
}