mirror of
https://github.com/labring/laf.git
synced 2026-01-25 16:07:45 +00:00
* feat: VSCode supports automatic introduction of cloud functions. * feat: laf assistant change settings for supports automatic introduction of cloud functions.
36 lines
890 B
JSON
36 lines
890 B
JSON
{
|
|
"compileOnSave": true,
|
|
"compilerOptions": {
|
|
"allowJs": false,
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["functions/*"]
|
|
},
|
|
"declaration": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"importHelpers": false,
|
|
"module": "commonjs",
|
|
"declarationMap": true,
|
|
// "declarationDir": "types",
|
|
"noEmitOnError": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": false,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"outDir": "dist",
|
|
"pretty": true,
|
|
"removeComments": true,
|
|
"stripInternal": true,
|
|
"skipDefaultLibCheck": true,
|
|
"skipLibCheck": true,
|
|
"target": "es2017",
|
|
"alwaysStrict": true,
|
|
"lib": ["es2015", "es6"]
|
|
},
|
|
"include": ["functions/**/*", "types/**/*"],
|
|
"exclude": ["tests"]
|
|
}
|