Home / File/ options.ts — vue Source File

options.ts — vue Source File

Architecture documentation for options.ts, a typescript file in the vue codebase. 6 imports, 1 dependents.

File typescript WebPlatform 6 imports 1 dependents

Entity Profile

Dependency Diagram

graph LR
  79e91077_f7a7_0ee1_926a_dbf257c88c51["options.ts"]
  fca02fea_d74a_16b5_3202_1a85f2351c93["index.ts"]
  79e91077_f7a7_0ee1_926a_dbf257c88c51 --> fca02fea_d74a_16b5_3202_1a85f2351c93
  7a870aa6_cb8c_14d5_7123_6cc7f7056936["index.ts"]
  79e91077_f7a7_0ee1_926a_dbf257c88c51 --> 7a870aa6_cb8c_14d5_7123_6cc7f7056936
  bd1ea209_f0b6_a660_b088_32a9933f8c05["index.ts"]
  79e91077_f7a7_0ee1_926a_dbf257c88c51 --> bd1ea209_f0b6_a660_b088_32a9933f8c05
  cf439f88_fb81_88c1_67e0_d8c40bf9a34e["util.ts"]
  79e91077_f7a7_0ee1_926a_dbf257c88c51 --> cf439f88_fb81_88c1_67e0_d8c40bf9a34e
  156bf2e1_8a13_f22d_5437_54f14bcef8fa["util"]
  79e91077_f7a7_0ee1_926a_dbf257c88c51 --> 156bf2e1_8a13_f22d_5437_54f14bcef8fa
  47ae9f26_59d1_fab2_349f_966f5d15495a["compiler"]
  79e91077_f7a7_0ee1_926a_dbf257c88c51 --> 47ae9f26_59d1_fab2_349f_966f5d15495a
  95855a54_c069_03c0_f190_110611bbea7e["index.ts"]
  95855a54_c069_03c0_f190_110611bbea7e --> 79e91077_f7a7_0ee1_926a_dbf257c88c51
  style 79e91077_f7a7_0ee1_926a_dbf257c88c51 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

Dependencies

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