1 Star 6 Fork 1

诺拉 / norait-shop-nestjs

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
tsconfig.json 1.23 KB
一键复制 编辑 原始数据 按行查看 历史
诺拉 提交于 2022-08-13 09:59 . 重新整理了架构
{
"compilerOptions": {
"target": "es2017",
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strictBindCallApply": false, //在使用 bind、call apply 语法的时候,是否进行参数检查。
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false,
"strictNullChecks": true,//严格空检查。如果关闭此选项,则 null undefined 两种类型是任意类型的子类型
"noImplicitAny": true, //不允许出现隐式的 any 类型
"strictFunctionTypes": true,//严格函数类型检查。
"strictPropertyInitialization": false, //严格属性初始化检查。这个选项要和 strictNullChecks 配合使用才行
"noImplicitThis": true,//不允许出现隐式any类型的this
"alwaysStrict": true //是否开启严格模式。这个不用多说,就是 JavaScript 中的 "use strict",肯定是要开启的
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"**/*.spec.ts"
]
}
NodeJS
1
https://gitee.com/norait/norashop-nest.git
git@gitee.com:norait/norashop-nest.git
norait
norashop-nest
norait-shop-nestjs
main

搜索帮助