mirror of
https://github.com/System-End/My-website.git
synced 2026-04-20 00:25:21 +00:00
26 lines
682 B
JSON
26 lines
682 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"lib": ["ESNext"],
|
|
"types": ["@cloudflare/workers-types"],
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"strictBindCallApply": true,
|
|
"strictPropertyInitialization": true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"include": ["src/worker/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|