Files
zkldi_Tachi/database-seeds/scripts/tsconfig.json
T
2022-12-14 05:20:24 +00:00

47 lines
873 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"noImplicitAny": false,
"strictNullChecks": true,
"allowJs": true,
"lib": [
"ES2019",
// This is necessary because -- for some unknown reason -- the AWS SDK
// depends on the DOM. Do people even run the AWS SDK in the browser?
// I hope not.
"DOM"
],
"rootDir": ".",
"baseUrl": ".",
"outDir": "./js",
// USE TS-NODE!
"noEmit": true,
"typeRoots": [
"@types",
"node_modules/@types"
],
"paths": {
"tachi-common": [
"../../common/src"
],
"tachi-common/*": [
"../../common/src/*"
]
},
"composite": true,
"tsBuildInfoFile": ".tsbuildinfo"
},
"ts-node": {
"require": [
"tsconfig-paths/register"
]
},
"exclude": [
"node_modules",
],
"references": [
{
"path": "../../common"
}
],
}