element-plus/tsconfig.json
三咲智子 7b7afc8f49
refactor: improve tsconfig (#5993)
* refactor: improve tsconfig

* chore: add cypress tsconfig
2022-02-15 14:45:50 +08:00

24 lines
558 B
JSON

{
"extends": "@vue/tsconfig/tsconfig.web.json",
"compilerOptions": {
"allowJs": true,
"module": "ES6",
"target": "ES2018",
"noImplicitAny": false,
"declaration": true,
"sourceMap": true,
"lib": ["ES2018", "DOM", "DOM.Iterable"],
"allowSyntheticDefaultImports": true,
"types": ["unplugin-vue-define-options"]
},
"references": [{ "path": "./tsconfig.jest.json" }],
"include": ["packages", "typings"],
"exclude": [
"node_modules",
"**/dist",
"**/__tests__",
"**/*.test.*",
"**/*.spec.*"
]
}