mirror of
https://github.com/sern-handler/handler
synced 2026-06-06 01:16:55 +00:00
22 lines
537 B
JSON
22 lines
537 B
JSON
{
|
|
"compilerOptions": {
|
|
"experimentalDecorators": true,
|
|
"resolveJsonModule": true,
|
|
"target": "esnext",
|
|
"module": "commonjs",
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"importsNotUsedAsValues": "error",
|
|
"moduleResolution": "node",
|
|
"skipLibCheck": true,
|
|
"declaration": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
},
|
|
"exclude": ["node_modules", "tests", "dist"],
|
|
"include": ["src"],
|
|
}
|