2020-09-28 20:19:10 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2021-01-19 22:33:18 +08:00
|
|
|
"target": "esnext",
|
2020-09-28 20:19:10 +08:00
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strictFunctionTypes": false,
|
2021-01-03 10:42:19 +08:00
|
|
|
"jsx": "preserve",
|
2020-09-28 20:19:10 +08:00
|
|
|
"baseUrl": ".",
|
|
|
|
"allowJs": true,
|
2020-10-29 22:29:46 +08:00
|
|
|
"sourceMap": true,
|
2020-09-28 20:19:10 +08:00
|
|
|
"esModuleInterop": true,
|
2021-02-05 22:13:19 +08:00
|
|
|
"resolveJsonModule": true,
|
2020-09-28 20:19:10 +08:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"experimentalDecorators": true,
|
2020-12-23 21:43:06 +08:00
|
|
|
"lib": ["dom", "esnext"],
|
2021-01-10 20:44:39 +08:00
|
|
|
"types": ["vite/client"],
|
2020-09-28 20:19:10 +08:00
|
|
|
"incremental": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"paths": {
|
2020-12-23 21:43:06 +08:00
|
|
|
"/@/*": ["src/*"]
|
2020-09-28 20:19:10 +08:00
|
|
|
}
|
|
|
|
},
|
2020-10-29 22:29:46 +08:00
|
|
|
"plugins": [
|
|
|
|
{
|
|
|
|
"name": "@vuedx/typescript-plugin-vue"
|
|
|
|
}
|
|
|
|
],
|
2020-12-23 21:43:06 +08:00
|
|
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
|
|
|
|
"exclude": ["node_modules", "dist", "**/*.js"]
|
2020-09-28 20:19:10 +08:00
|
|
|
}
|