chore(copyright): Add missing copyright headers to fxa-admin-panel

This commit is contained in:
Peter deHaan 2023-05-02 15:13:44 -07:00
parent 4c96a041ef
commit 2e992a7528
No known key found for this signature in database
GPG Key ID: 653A957633833BD8
4 changed files with 16 additions and 0 deletions

View File

@ -1,3 +1,7 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
module.exports = {
plugins: {
'postcss-import': {},

View File

@ -1,3 +1,7 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
module.exports = {
transform: {
'^.+\\.tsx?$': ['ts-jest', { isolatedModules: true }],

View File

@ -1,3 +1,7 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
import { config } from './config';
describe('config', () => {

View File

@ -1,3 +1,7 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/// <reference types="react-scripts" />
type Nullable<T> = T | null;