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