mirror of
https://github.com/sern-handler/handler
synced 2026-06-06 01:16:55 +00:00
18 lines
481 B
JSON
18 lines
481 B
JSON
{
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"importsNotUsedAsValues": "error",
|
|
"moduleResolution": "node",
|
|
"skipLibCheck": true,
|
|
"declaration": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"exclude": ["node_modules", "dist"],
|
|
"include": ["src"]
|
|
}
|