mirror of
https://github.com/sern-handler/sern-community
synced 2026-06-06 01:16:57 +00:00
22 lines
494 B
JSON
22 lines
494 B
JSON
{
|
|
"compilerOptions": {
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "Node",
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"outDir": "dist",
|
|
"strict": true,
|
|
"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"]
|
|
}
|
|
}
|
|
}
|