19 lines
410 B
JSON
19 lines
410 B
JSON
|
{
|
||
|
"extends": "./tsconfig.json",
|
||
|
"compilerOptions": {
|
||
|
"target": "ESNext",
|
||
|
"module": "CommonJS",
|
||
|
"baseUrl": "build",
|
||
|
"rootDir": "build/ts-source",
|
||
|
"sourceRoot": "build/ts-source",
|
||
|
"outDir": "build/ts",
|
||
|
"declaration": false,
|
||
|
|
||
|
"typeRoots": [],
|
||
|
"resolveJsonModule": false
|
||
|
},
|
||
|
"include": [
|
||
|
"build/ts-source/**/*"
|
||
|
]
|
||
|
}
|