tsconfig_util.json (806B)
1 { 2 "compilerOptions": { 3 "outDir": "./dist_utils/", 4 "target": "ESNext", 5 "useDefineForClassFields": true, 6 "module": "ESNext", 7 "lib": [ 8 "ESNext", 9 "DOM" 10 ], 11 "allowJs": true, 12 "moduleResolution": "Node", 13 "strict": true, 14 "noImplicitAny": true, 15 "strictNullChecks": true, 16 "strictFunctionTypes": true, 17 "strictBindCallApply": true, 18 "strictPropertyInitialization": true, 19 "noImplicitThis": true, 20 "alwaysStrict": true, 21 "noFallthroughCasesInSwitch": true, 22 "sourceMap": true, 23 "resolveJsonModule": true, 24 "isolatedModules": true, 25 "esModuleInterop": true, 26 "noUnusedLocals": true, 27 "noUnusedParameters": true, 28 "noImplicitReturns": true, 29 "skipLibCheck": true 30 }, 31 "include": [ 32 "postprocess_map_export.ts" 33 ] 34 }