15 lines
304 B
JSON
15 lines
304 B
JSON
|
|
{
|
||
|
|
"extends": "./tsconfig.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"rootDir": "./src",
|
||
|
|
"outDir": "./build",
|
||
|
|
"declaration": true,
|
||
|
|
"noEmit": false,
|
||
|
|
"composite": true,
|
||
|
|
"tsBuildInfoFile": "./build/.tsbuildinfo",
|
||
|
|
"target": "ES2020",
|
||
|
|
"types": ["node"]
|
||
|
|
},
|
||
|
|
"exclude": ["./test/*.ts"]
|
||
|
|
}
|