mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-23 10:04:18 -08:00
33 lines
814 B
JSON
33 lines
814 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"jsx": "preserve",
|
|
"lib": ["dom", "es2015", "es2017"],
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"removeComments": false,
|
|
"allowJs": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"ol": ["node_modules/ol/src"],
|
|
"ol/*": ["node_modules/ol/src/*"],
|
|
"ol-mapbox-style": ["node_modules/ol-mapbox-style/src"],
|
|
"ol-mapbox-style/*": ["node_modules/ol-mapbox-style/src/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"./src/**/*",
|
|
"**/*.ts",
|
|
"node_modules/ol/**/*",
|
|
"node_modules/ol-mapbox-style/**/*"
|
|
],
|
|
"typeAcquisition": {
|
|
"exclude": ["ol", "ol-mapbox-style"]
|
|
}
|
|
}
|