47 lines
873 B
JSON
47 lines
873 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"resolveJsonModule": true,
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"importHelpers": true,
|
|
"moduleResolution": "node",
|
|
"experimentalDecorators": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"sourceMap": true,
|
|
"skipLibCheck": true,
|
|
"baseUrl": ".",
|
|
"typeRoots": [ "node_modules/@types", "src/typings" ],
|
|
"types": [
|
|
"webpack-env",
|
|
"mocha",
|
|
"chai",
|
|
"leaflet"
|
|
],
|
|
"paths": {
|
|
"@/*": [
|
|
"src/*"
|
|
]
|
|
},
|
|
"lib": [
|
|
"esnext",
|
|
"dom",
|
|
"dom.iterable",
|
|
"scripthost"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.vue",
|
|
"tests/**/*.ts",
|
|
"tests/**/*.tsx"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|