Files
zkldi_Tachi/database-seeds/scripts/tsconfig.json
T

39 lines
741 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"
],
"outDir": "./js",
"baseUrl": "src",
// USE TS-NODE!
"noEmit": true,
"typeRoots": [
"@types",
"node_modules/@types"
],
"paths": {
"tachi-common": [
"../../../common/src"
],
"tachi-common/*": [
"../../../common/src/*"
]
}
},
"ts-node": {
"require": [
"tsconfig-paths/register"
]
},
"exclude": [
"node_modules",
]
}