Skip to content
Snippets Groups Projects
tsconfig.json 732 B
Newer Older
{
  "compileOnSave": true,
glennvorhes's avatar
glennvorhes committed
  "version": "3.4.3",
  "compilerOptions": {
glennvorhes's avatar
glennvorhes committed
//    "checkJs": true,
    "declaration": true,
//    "maxNodeModuleJsDepth": 5,
//    "allowJs": true,
    "baseUrl": "./",
    "module": "commonjs",
    "target": "es5",
Glenn Vorhes's avatar
Glenn Vorhes committed
    "sourceMap": true,
Glenn Vorhes's avatar
Glenn Vorhes committed
    "inlineSources": true,
    "jsx": "react",
Glenn Vorhes's avatar
Glenn Vorhes committed
    "noEmitOnError": true,
Glenn Vorhes's avatar
Glenn Vorhes committed
    "rootDir": "./src",
Glenn Vorhes's avatar
Glenn Vorhes committed
    "outDir": "./dist",
glennvorhes's avatar
glennvorhes committed
    "noImplicitAny": false,
    "paths": {
      "ol": ["./node_modules/ol/src"],
      "ol/*": ["./node_modules/ol/src/*"]
    }
glennvorhes's avatar
glennvorhes committed
//  "files": [
//    "./src/layers/LayerBase.ts",
//    "./src/layers/LayerBaseVector.ts"
//  ]
//  "include": [
//    "./src/**/*"
////    "node_modules/ol/**/*.js"
//  ],
  "exclude": ["test/*", "dist/*"]