1 Star 1 Fork 1

熊玉辉 / canvas-lms源代码国内镜像源地址

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
tsconfig.json 1.46 KB
一键复制 编辑 原始数据 按行查看 历史
{
"compilerOptions": {
"allowJs": true, // allows importing of .js files from .ts files
"esModuleInterop": true, // more accurately transpiles to the ES6 module spec (maybe not needed w/ babel transpilation)
"isolatedModules": true, // required to adhere to babel's single-file transpilation process
"jsx": "react", // transpiles jsx to React.createElement calls (maybe not needed w/ babel transpilation)
"lib": ["dom", "es7"], // include types for DOM APIs and standard JS up to ES2016 / ES7
"module": "ES2020", // support the most modern ES6-style module syntax
"moduleResolution": "node", // required for non-commonjs imports
"noEmit": true, // don't generate transpiled JS files, source-maps, or .d.ts files for Canvas source code
"resolveJsonModule": true, // enables importing json files
"skipLibCheck": true, // don't do type-checking on dependencies' internal types for improved performance
"strict": true, // enables a bunch of strict mode family options. See https://www.typescriptlang.org/tsconfig#strict
"target": "ES2020", // support the most modern JS features (let babel handle transpilation)
"noImplicitAny": false, // temporarily allows un-typed variables (and imports) to be automatically defined as "any",
"baseUrl": "./ui", // recommended to be defined when using `paths`
"paths": {
"@canvas/*": ["shared/*"] // lets TS follow an 'import Foo from @canvas/foo' statement
}
},
"include": ["ui/**/*"]
}
Ruby
1
https://gitee.com/xiong-yuhui/canvas-Lms.git
git@gitee.com:xiong-yuhui/canvas-Lms.git
xiong-yuhui
canvas-Lms
canvas-lms源代码国内镜像源地址
master

搜索帮助