24 lines
534 B
JSON
24 lines
534 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"declaration": true,
|
|
"declarationDir": "build",
|
|
"baseUrl": "./",
|
|
"lib": [
|
|
"ESNext"
|
|
],
|
|
"paths": {
|
|
"command/*": ["./source/command/*"],
|
|
"common/*": ["./source/common/*"],
|
|
"resource/*": ["./source/resource/*"],
|
|
"renderer/*": ["./source/renderer/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"./source/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"build"
|
|
]
|
|
} |