14 lines
304 B
JSON
14 lines
304 B
JSON
|
|
{
|
||
|
|
"extends": "ts-config",
|
||
|
|
"compilerOptions": {
|
||
|
|
"outDir": "build/main",
|
||
|
|
"rootDir": "src",
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"types": ["jest", "node", "long"],
|
||
|
|
"lib": ["es2020", "DOM"],
|
||
|
|
"composite": true
|
||
|
|
},
|
||
|
|
"include": ["src/**/*.ts", "src/**/.*.ts"],
|
||
|
|
"exclude": ["node_modules/**"]
|
||
|
|
}
|