reader/backend/functions/tsconfig.json

23 lines
560 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,
"noUnusedLocals": true,
"outDir": "build",
"sourceMap": true,
"strict": true,
"allowJs": true,
"target": "es2022",
"lib": ["es2022"],
"skipLibCheck": true,
"useDefineForClassFields": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"noImplicitOverride": true,
},
"compileOnSave": true,
"include": ["src"]
}