83 lines
1.6 KiB
JSON
83 lines
1.6 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"pretty": true,
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"resolveJsonModule": true,
|
|
"importHelpers": true,
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"moduleResolution": "node",
|
|
"experimentalDecorators": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"strictPropertyInitialization": false,
|
|
"esModuleInterop": true,
|
|
"downlevelIteration": true,
|
|
"noUnusedLocals": true,
|
|
"noImplicitAny": false,
|
|
"noImplicitThis": true,
|
|
"removeComments": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strictFunctionTypes": false,
|
|
"sourceMap": false,
|
|
"baseUrl": ".",
|
|
"types": [
|
|
"webpack-env",
|
|
"jest",
|
|
"node",
|
|
"@types/node"
|
|
],
|
|
"paths": {
|
|
"vue": [
|
|
"node_modules/vue/types"
|
|
],
|
|
"@/*": [
|
|
"*",
|
|
"src/*"
|
|
],
|
|
"examples/*": [
|
|
"examples/*"
|
|
],
|
|
"config/*": [
|
|
"config/*"
|
|
],
|
|
"@design": [
|
|
"src/design/index.less"
|
|
],
|
|
"compatible-vue": [
|
|
"src/setup/vue/index.ts"
|
|
],
|
|
},
|
|
"lib": [
|
|
"esnext",
|
|
"dom",
|
|
"dom.iterable",
|
|
"scripthost"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.vue",
|
|
"config/**/*.ts",
|
|
"tests/**/*.ts",
|
|
"tests/**/*.tsx",
|
|
"docs/**/*.ts",
|
|
"docs/**/*.tsx",
|
|
"docs/**/*.vue",
|
|
"examples/**/*.ts",
|
|
"examples/**/*.tsx",
|
|
"examples/**/*.vue"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"./node_modules",
|
|
"**/*.spec.ts",
|
|
"dist",
|
|
"config",
|
|
"public"
|
|
]
|
|
}
|