typomath/tsconfig.json
Glen Whitney b15035bfe6 feat(overload): Use typescript-rtti to select implementations
Note that the changes to module resolution cause steps one and two no longer
  to run because node can't find the imports, although they still compile fine.
2022-09-25 15:48:44 -04:00

19 lines
498 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"baseUrl": ".",
"paths": {
"over.ts": ["node_modules/over.ts/src/index.js"],
"typescript-rtti": ["node_modules/typescript-rtti/dist/index.js"]
},
"plugins": [{ "transform": "typescript-rtti/dist/transformer" }],
"rootDir": ".",
"outDir": "obj"
},
"include": [
"node_modules/over.ts/src/index.ts",
"src/steps/*.ts",
"src/util/*.ts"
]
}