laf/server/tsconfig.json
limbo 9c4a57a5d5
feat(server): implements cloud function template & templates marketplace (#1259)
* feat(server): add function template market

* refactor(server): refactor auth api(profile/pat) (#1226)

* feat(server): add function template market

* chore(server: Interface aggregation)

* chore(server: add metering)

* change some interface

---------

Co-authored-by: maslow <wangfugen@126.com>
2023-06-20 15:25:31 +08:00

21 lines
545 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "es2017",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": false,
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false
}
}