Glen Whitney
2f0a9936a3
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
19 lines
498 B
JSON
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"
|
|
]
|
|
}
|