mirror of
https://github.com/zkldi/Tachi.git
synced 2026-09-26 17:07:58 +03:00
47 lines
873 B
JSON
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"
|
|
}
|
|
],
|
|
} |