Glen Whitney
b15035bfe6
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.
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"
|
|
]
|
|
}
|