-
Notifications
You must be signed in to change notification settings - Fork 86
/
tsconfig.json
34 lines (34 loc) · 1.01 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"_description_": "Tsconfig base for publishing TS/JS as ES6*/",
"compilerOptions": {
"outDir": "distlib",
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "node",
"lib": ["es2023", "dom"],
"esModuleInterop": true,
"declaration": true,
"allowJs": true,
"noImplicitAny": true,
"noImplicitThis": true,
"alwaysStrict": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"skipLibCheck": true,
"sourceMap": true,
"experimentalDecorators": true,
"useDefineForClassFields": false,
"baseUrl": "./",
"paths": {
"ngeo/*": ["src/*"],
"gmf/*": ["src/*"],
"gmfapi/*": ["srcapi/*"],
"api/*": ["api/src/*"],
"lib/*": ["lib/*"],
"mapillary-js/*": ["node_modules/mapillary-js/dist/mapillary.d.ts"]
}
},
"include": ["src/**/*.js", "src/**/*.ts", "srcapi/**/*.ts", "lib/**/*.js", "api/src/**/*.js"],
"exclude": ["./**/*.spec.ts", "./**/*.spec.js"],
"files": ["types/dom.d.ts", "types/custom.d.ts"]
}