forked from geolba/tethys.backend
- npm updates, remove rxjs
- add draw.component.vue - only load needed leaflet classes into map.component.vue an Submitter/Create.vue - rename js/store.Map.ts to js/Stores/map.service.ts -
This commit is contained in:
parent
cd66f318b6
commit
a744ae7e5b
19 changed files with 683 additions and 275 deletions
|
@ -1,18 +1,22 @@
|
|||
{
|
||||
// tsconfig.vue.json
|
||||
"extends": "@vue/tsconfig/tsconfig.web.json",
|
||||
"include": [
|
||||
"./resources/js/**/*"
|
||||
],
|
||||
"include": ["./resources/js/**/*"],
|
||||
|
||||
"compilerOptions": {
|
||||
"allowJs": true,
|
||||
"paths": {
|
||||
"@/*": ["./resources/js/*"]
|
||||
},
|
||||
"experimentalDecorators": true,//neu
|
||||
"strictPropertyInitialization": false, //neu
|
||||
// "module": "commonjs", //for tehys.api...alos nodenext
|
||||
// Process & infer types from .js files.
|
||||
"allowJs": true,
|
||||
// Target latest version 'esnext' of ECMAScript or minimal 'es6'.
|
||||
"target": "ESNext", //neu
|
||||
// //what module code is generated
|
||||
"module": "ESNext", //neu
|
||||
"experimentalDecorators": true, //neu
|
||||
"strictPropertyInitialization": false //neu
|
||||
},
|
||||
"files": [
|
||||
"./index.d.ts",
|
||||
]
|
||||
}
|
||||
"paths": {
|
||||
"App/*": ["./app/*"], // for App/modles/User
|
||||
"@/*": ["./resources/js/*"]
|
||||
},
|
||||
"files": ["./index.d.ts"]
|
||||
}
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue