10 Star 144 Fork 31

曾勇 / web-editor-markdown

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
tsconfig.json 1.10 KB
一键复制 编辑 原始数据 按行查看 历史
zengyong 提交于 2022-06-25 19:57 . chore: init
{
"ts-node": {
// these options are overrides used only by ts-node
// same as our --compilerOptions flag and our TS_NODE_COMPILER_OPTIONS environment variable
"compilerOptions": {
"module": "commonjs"
}
},
"compilerOptions": {
"baseUrl": "./src",
"outDir": "dist",
"pretty": true,
"module": "ESNext",
"target": "ESNext",
"jsx": "react",
"lib": ["es2015", "dom"],
"sourceMap": true,
"allowJs": false,
"moduleResolution": "node",
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"noEmitHelpers": false,
"noUnusedLocals": false,
"importHelpers": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"typeRoots": ["node_modules/@types", "src/**/*.d.ts", "*.d.ts"],
"traceResolution": false,
"skipLibCheck": true,
"declaration": true
},
"include": ["src"],
"exclude": ["node_modules", "build", "config", "dist"]
}
TypeScript
1
https://gitee.com/zengyong2020/web-editor-markdown.git
git@gitee.com:zengyong2020/web-editor-markdown.git
zengyong2020
web-editor-markdown
web-editor-markdown
master

搜索帮助