otto/tsconfig.json

35 lines
801 B
JSON

{
"compilerOptions": {
"alwaysStrict" : true,
"baseUrl" : ".",
"outDir": "./build",
"module" : "commonjs",
"lib" : ["es2017"],
"moduleResolution": "node",
"esModuleInterop": true,
"importHelpers" : true,
"target": "es2015",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noUnusedLocals": false,
"strictNullChecks": true,
"skipLibCheck": true,
"paths": {
"@otto-orchestrator/*": ["./services/orchestrator/src/*"],
"@otto-parser/*": ["./services/parser/src/*"],
"@otto/grammar/*": ["./grammar/build/parser/JavaScript/*"],
"@otto/*": ["./lib/src/*"]
},
"typeRoots" : [
"./node_modules/@types"
]
},
"exclude": [
"**/__tests__/*.ts"
]
}