|
@@ -1,13 +1,35 @@
|
|
{
|
|
{
|
|
"extends": "@vue/tsconfig/tsconfig.web.json",
|
|
"extends": "@vue/tsconfig/tsconfig.web.json",
|
|
- "include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
|
|
|
|
|
|
+ // "include": ["env.d.ts", "src/**/*", "src/**/*.vue", "../common/src/stores/user", "../common/src/stores/user"],
|
|
|
|
+ "include": [
|
|
|
|
+ "src/**/*.ts",
|
|
|
|
+ "src/**/*.d.ts",
|
|
|
|
+ "src/**/*.tsx",
|
|
|
|
+ "src/**/*.vue",
|
|
|
|
+ "src/untils/baiduMap.js",
|
|
|
|
+ "src/untils/debuonce.js",
|
|
|
|
+ "**/*.ts",
|
|
|
|
+ "**/*.tsx"
|
|
|
|
+ ],
|
|
"compilerOptions": {
|
|
"compilerOptions": {
|
|
|
|
+ "target": "esnext",
|
|
|
|
+ "module": "esnext",
|
|
|
|
+ "strict": false,
|
|
|
|
+ "jsx": "preserve",
|
|
|
|
+ "moduleResolution": "node",
|
|
"baseUrl": ".",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"paths": {
|
|
- "@/*": ["./src/*"]
|
|
|
|
- }
|
|
|
|
|
|
+ "@/*": ["./src/*"],
|
|
|
|
+ "@common/*": ["../common/*"]
|
|
|
|
+ },
|
|
|
|
+ "isolatedModules": false,
|
|
|
|
+ "suppressImplicitAnyIndexErrors": true,
|
|
|
|
+ "sourceMap": true,
|
|
|
|
+ "resolveJsonModule": true,
|
|
|
|
+ "esModuleInterop": true,
|
|
|
|
+ "lib": ["es5", "es6", "dom", "dom.iterable"],
|
|
|
|
+ "allowSyntheticDefaultImports": true
|
|
},
|
|
},
|
|
-
|
|
|
|
"references": [
|
|
"references": [
|
|
{
|
|
{
|
|
"path": "./tsconfig.node.json"
|
|
"path": "./tsconfig.node.json"
|