serverline-sim/tsconfig.json

15 lines
254 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",
2021-12-12 11:23:03 -05:00
"baseUrl": "./src",
2021-12-12 10:53:26 -05:00
"paths": {
2021-12-12 11:23:03 -05:00
"@kernel": [ "./" ]
2021-12-12 10:53:26 -05:00
}
2021-12-11 23:03:55 -05:00
},
"include": [
2021-12-12 11:23:03 -05:00
"src/**/*.ts"
2021-12-11 23:03:55 -05:00
]
}