Files
zkldi_Tachi/sieglinde/tsconfig.json
T
2022-12-01 21:10:23 +00:00

41 lines
614 B
JSON

{
"extends": "../tsconfig.json",
"compilerOptions": {
"rootDir": "src",
"baseUrl": "src",
"outDir": "js",
"lib": [
"ES2019"
],
"typeRoots": [
"@types",
"node_modules/@types",
],
"paths": {
"tachi-common": [
"../../common/src"
],
"tachi-common/*": [
"../../common/src/*"
]
},
"composite": true,
"tsBuildInfoFile": ".tsbuildinfo"
},
"ts-node": {
"require": [
"tsconfig-paths/register"
]
},
"include": [
"src/**/*.ts",
],
"exclude": [
"node_modules",
],
"references": [
{
"path": "../common"
}
]
}