asajs configuration file
This commit is contained in:
parent
e75e45d056
commit
4ad9e832bd
10 changed files with 76 additions and 18 deletions
14
config.d.ts
vendored
Normal file
14
config.d.ts
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
import { Variable } from "./src/types/properties/value.ts"
|
||||
|
||||
export interface Config {
|
||||
compiler?: {
|
||||
enabled?: boolean
|
||||
linked?: boolean
|
||||
}
|
||||
packinfo?: {
|
||||
name?: string
|
||||
description?: string
|
||||
version?: [number, number, number]
|
||||
}
|
||||
global_variables?: Record<Variable, string>
|
||||
}
|
||||
Reference in a new issue