├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .npmrc ├── .nvmrc ├── LICENSE ├── README.md ├── content-type-vs-file-extension.md ├── index.html ├── package.json ├── spec.emu └── tag-security-and-privacy.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-import-attributes/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-import-attributes/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-import-attributes/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-import-attributes/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-import-attributes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-import-attributes/HEAD/README.md -------------------------------------------------------------------------------- /content-type-vs-file-extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-import-attributes/HEAD/content-type-vs-file-extension.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-import-attributes/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-import-attributes/HEAD/package.json -------------------------------------------------------------------------------- /spec.emu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-import-attributes/HEAD/spec.emu -------------------------------------------------------------------------------- /tag-security-and-privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-import-attributes/HEAD/tag-security-and-privacy.md --------------------------------------------------------------------------------