laf/cli/template/tsconfig.json
nightwhite 983490650b
feat(cli): vscode supports automatic introduction of cloud functions. (#1146)
* feat: VSCode supports automatic introduction of cloud functions.

* feat: laf assistant change settings for supports automatic introduction of cloud functions.
2023-05-16 20:59:06 +08:00

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"]
}