Directive ↔ Statement to direct Compiler/Preprocessor behavior
"use strict"
Directive Statement to invoke Strict Mode for either entire script or specific function
Hashbang
Directive to specify Runtime via first-line code: #!/usr/bin/env node
By extension, //ts- && //eslint && //prettier statements act functionally as Directive to control plugin behavior (99% to disable for next line or file)
References
"use strict"↔ Directive Statement to invoke Strict Mode for either entire script or specific functionHashbang↔ Directive to specify Runtime via first-line code:#!/usr/bin/env nodesrc/index.css↔ base CSS fle to include Tailwind for project via@tailwindDirectiveAt-Rule↔@prefix Directive to control CSS behavior for next block/lineTSC Directive↔ comment statement as Directive to control TSC behavior on line/file basis"use client"↔ (Next 13) Directive to opt-in to Client Component