reader/backend/functions/tsconfig.json

24 lines
593 B
JSON
Raw Normal View History

2024-04-10 19:32:07 +08:00
{
"compilerOptions": {
"module": "node16",
2024-04-10 19:32:07 +08:00
"noImplicitReturns": true,
2024-08-14 17:05:07 +08:00
"noUnusedLocals": false,
2024-04-10 19:32:07 +08:00
"outDir": "build",
"sourceMap": true,
"strict": true,
"allowJs": true,
"target": "es2022",
"lib": ["es2022"],
"skipLibCheck": true,
"useDefineForClassFields": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
2024-08-14 17:11:02 +08:00
"noImplicitAny": false,
2024-04-10 19:32:07 +08:00
"noImplicitOverride": true,
},
"compileOnSave": true,
"include": ["src"]
}