typomath/tsconfig.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"
]
}