options.ts — vue Source File
Architecture documentation for options.ts, a typescript file in the vue codebase. 6 imports, 1 dependents.
Entity Profile
Dependency Diagram
graph LR c617a26f_747b_ad91_805e_3599015c7466["options.ts"] 568fc8c2_8a29_0e8e_a20a_4478e7270dd9["index.ts"] c617a26f_747b_ad91_805e_3599015c7466 --> 568fc8c2_8a29_0e8e_a20a_4478e7270dd9 a85501f5_3770_59af_2f90_3e1b4461f2fc["index.ts"] c617a26f_747b_ad91_805e_3599015c7466 --> a85501f5_3770_59af_2f90_3e1b4461f2fc f775a5be_e998_af45_9bda_1ef8cd715838["index.ts"] c617a26f_747b_ad91_805e_3599015c7466 --> f775a5be_e998_af45_9bda_1ef8cd715838 a8a536b1_b93d_ee72_7ba3_79c7aab21b4d["util.ts"] c617a26f_747b_ad91_805e_3599015c7466 --> a8a536b1_b93d_ee72_7ba3_79c7aab21b4d 09aa5370_2caa_6b33_3f44_6ac5211bd11b["util"] c617a26f_747b_ad91_805e_3599015c7466 --> 09aa5370_2caa_6b33_3f44_6ac5211bd11b a80b8e3b_d720_9146_3bf6_594d4ee5dd77["compiler"] c617a26f_747b_ad91_805e_3599015c7466 --> a80b8e3b_d720_9146_3bf6_594d4ee5dd77 83b54a97_3eec_287c_ac2b_9c9d7158daca["index.ts"] 83b54a97_3eec_287c_ac2b_9c9d7158daca --> c617a26f_747b_ad91_805e_3599015c7466 style c617a26f_747b_ad91_805e_3599015c7466 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import {
isPreTag,
mustUseProp,
isReservedTag,
getTagNamespace
} from '../util/index'
import modules from './modules/index'
import directives from './directives/index'
import { genStaticKeys } from 'shared/util'
import { isUnaryTag, canBeLeftOpenTag } from './util'
import { CompilerOptions } from 'types/compiler'
export const baseOptions: CompilerOptions = {
expectHTML: true,
modules,
directives,
isPreTag,
isUnaryTag,
mustUseProp,
canBeLeftOpenTag,
isReservedTag,
getTagNamespace,
staticKeys: genStaticKeys(modules)
}
Domain
Imported By
Source
Frequently Asked Questions
What does options.ts do?
options.ts is a source file in the vue codebase, written in typescript. It belongs to the WebPlatform domain.
What does options.ts depend on?
options.ts imports 6 module(s): compiler, index.ts, index.ts, index.ts, util, util.ts.
What files import options.ts?
options.ts is imported by 1 file(s): index.ts.
Where is options.ts in the architecture?
options.ts is located at src/platforms/web/compiler/options.ts (domain: WebPlatform, directory: src/platforms/web/compiler).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free