typomath/tsconfig.json
Glen Whitney 2f0a9936a3 feat(overload): Use typescript-rtti to select implementations (#4)
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.

Co-authored-by: Glen Whitney <glen@studioinfinity.org>
Reviewed-on: #4
2022-09-25 20:02:01 +00: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"
]
}