2021-05-27 15:26:19 +02:00
|
|
|
{
|
|
|
|
"extends": "../tsconfig.json",
|
|
|
|
"compilerOptions": {
|
|
|
|
"composite": true,
|
|
|
|
|
2021-11-20 15:30:02 +01:00
|
|
|
"module": "CommonJS",
|
|
|
|
|
2021-05-27 15:26:19 +02:00
|
|
|
"baseUrl": "../dist",
|
|
|
|
"rootDir": "./",
|
|
|
|
"sourceRoot": "./",
|
|
|
|
"outDir": "../dist",
|
|
|
|
|
|
|
|
"typeRoots": [
|
|
|
|
"src/types"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"./**/*"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"./assets/**/*",
|
|
|
|
"./common/**/*"
|
|
|
|
],
|
|
|
|
"references": [
|
|
|
|
{
|
|
|
|
"path": "./common"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|