serverline-sim/tsconfig.json

15 lines
262 B
JSON
Raw Normal View History

2021-12-11 23:03:55 -05:00
{
"compilerOptions": {
"noImplicitAny": true,
2021-12-12 10:53:26 -05:00
"downlevelIteration": true,
"module": "ESNext",
"moduleResolution": "Node",
"baseUrl": "./",
"paths": {
"@kernel": [ "src/index.ts" ]
}
2021-12-11 23:03:55 -05:00
},
"include": [
"src/index.ts"
]
}