mirror of
https://github.com/sern-handler/sern-community
synced 2026-06-05 17:06:55 +00:00
25 lines
713 B
JSON
25 lines
713 B
JSON
{
|
|
"compilerOptions": {
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "Node",
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"outDir": "dist",
|
|
"strict": true,
|
|
"baseUrl": ".",
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"verbatimModuleSyntax": false,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"paths": {
|
|
"#plugins": ["src/plugins/index.js"],
|
|
"#utils": ["src/utils/index.js"],
|
|
"#constants": ["src/constants.js"],
|
|
"#db": ["src/utils/db.js"],
|
|
"#commands/*": ["src/commands/*"],
|
|
}
|
|
}
|
|
}
|