2020-08-15 14:43:14 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": "./",
|
|
|
|
"paths": {
|
2020-10-19 16:43:10 +08:00
|
|
|
"ant-design-vue": ["components/index.tsx"],
|
|
|
|
"ant-design-vue/es/*": ["components/*"]
|
2020-08-15 14:43:14 +08:00
|
|
|
},
|
2020-10-07 22:49:01 +08:00
|
|
|
"strictNullChecks": false,
|
2020-10-09 17:15:40 +08:00
|
|
|
"strict": true,
|
2020-08-15 14:43:14 +08:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noUnusedLocals": true,
|
2020-10-01 20:57:03 +08:00
|
|
|
"noImplicitAny": false,
|
2020-08-15 14:43:14 +08:00
|
|
|
"target": "es6",
|
|
|
|
"lib": ["dom", "es2017"],
|
2020-10-02 21:16:05 +08:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"allowJs": true
|
2020-08-15 14:43:14 +08:00
|
|
|
},
|
2020-10-19 16:43:10 +08:00
|
|
|
"exclude": ["node_modules", "lib", "es", "antd-tools", "dist"]
|
2020-08-15 14:43:14 +08:00
|
|
|
}
|