serverline-sim/tsconfig.json

18 lines
346 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 17:09:52 -05:00
"outDir": "./dist",
2021-12-12 22:43:24 -05:00
"declaration": true,
"allowSyntheticDefaultImports": true
2021-12-12 17:09:52 -05:00
},
"paths": {
"@commands:executor": [""]
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
]
}