j40-cejst-2/client/tsconfig.json
2021-06-17 09:28:37 -04:00

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"]
}
}