2018-12-21 15:41:34 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"module": "esnext",
|
2019-09-12 11:34:01 +02:00
|
|
|
"resolveJsonModule": true,
|
2018-12-21 15:41:34 +01:00
|
|
|
"strict": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"importHelpers": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"sourceMap": true,
|
2019-07-03 17:47:11 +02:00
|
|
|
"skipLibCheck": true,
|
2018-12-21 15:41:34 +01:00
|
|
|
"baseUrl": ".",
|
2019-06-17 17:15:27 +02:00
|
|
|
"typeRoots": [ "node_modules/@types", "src/typings" ],
|
2018-12-21 15:41:34 +01:00
|
|
|
"types": [
|
|
|
|
"webpack-env",
|
|
|
|
"mocha",
|
2019-03-22 17:35:07 +01:00
|
|
|
"chai",
|
|
|
|
"leaflet"
|
2018-12-21 15:41:34 +01:00
|
|
|
],
|
|
|
|
"paths": {
|
|
|
|
"@/*": [
|
|
|
|
"src/*"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"lib": [
|
|
|
|
"esnext",
|
|
|
|
"dom",
|
|
|
|
"dom.iterable",
|
|
|
|
"scripthost"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/**/*.ts",
|
|
|
|
"src/**/*.tsx",
|
|
|
|
"src/**/*.vue",
|
|
|
|
"tests/**/*.ts",
|
|
|
|
"tests/**/*.tsx"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules"
|
|
|
|
]
|
2019-03-22 17:35:07 +01:00
|
|
|
}
|