mirror of
https://github.com/SrIzan10/sern-community.git
synced 2026-05-01 11:05:19 +00:00
23 lines
506 B
JSON
23 lines
506 B
JSON
{
|
|
"compilerOptions": {
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "Node",
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"outDir": "dist",
|
|
"strict": true,
|
|
"baseUrl": ".",
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"importsNotUsedAsValues": "error",
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"paths": {
|
|
"#plugins": ["src/plugins/index.js"],
|
|
"#utils": ["src/utils/index.js"],
|
|
"#constants": ["src/constants.js"]
|
|
}
|
|
}
|
|
}
|