-
Notifications
You must be signed in to change notification settings - Fork 666
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update exclude path for legacy fonts.
Remove glyphs.html because the updated one was introduced in a different PR.
- Loading branch information
Showing
3 changed files
with
22 additions
and
144 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */ | ||
"module": "esnext", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */ | ||
"allowJs": true, /* Allow javascript files to be compiled. */ | ||
"sourceMap": true, /* Generates corresponding '.map' file. */ | ||
"outDir": "./build", /* Redirect output structure to the directory. */ | ||
"target": "es6" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */, | ||
"module": "esnext" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */, | ||
"allowJs": true /* Allow javascript files to be compiled. */, | ||
"sourceMap": true /* Generates corresponding '.map' file. */, | ||
"outDir": "./build" /* Redirect output structure to the directory. */, | ||
"declaration": true, | ||
"declarationDir": "./build/types", | ||
"strict": true, /* Enable all strict type-checking options. */ | ||
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ | ||
"skipLibCheck": true, /* Skip type checking of declaration files. */ | ||
"forceConsistentCasingInFileNames": true, /* Disallow inconsistently-cased references to the same file. */ | ||
"strict": true /* Enable all strict type-checking options. */, | ||
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */, | ||
"skipLibCheck": true /* Skip type checking of declaration files. */, | ||
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */, | ||
"moduleResolution": "node", | ||
"baseUrl": "./src", | ||
"paths": { | ||
"@bravura": ["fonts/loadDynamic"], | ||
"@gonville": ["fonts/loadDynamic"], | ||
"@petaluma": ["fonts/loadDynamic"], | ||
"@custom": ["fonts/loadDynamic"] | ||
}, | ||
} | ||
}, | ||
"exclude": ["./src/fonts/legacy", "./releases", "./reference"] | ||
"exclude": ["./tools/fonts/legacy", "./releases", "./reference"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */ | ||
"module": "esnext", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */ | ||
"allowJs": true, /* Allow javascript files to be compiled. */ | ||
"sourceMap": true, /* Generates corresponding '.map' file. */ | ||
"outDir": "./build", /* Redirect output structure to the directory. */ | ||
"target": "es6" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */, | ||
"module": "esnext" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */, | ||
"allowJs": true /* Allow javascript files to be compiled. */, | ||
"sourceMap": true /* Generates corresponding '.map' file. */, | ||
"outDir": "./build" /* Redirect output structure to the directory. */, | ||
"declaration": true, | ||
"declarationDir": "./build/types", | ||
"strict": true, /* Enable all strict type-checking options. */ | ||
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ | ||
"skipLibCheck": true, /* Skip type checking of declaration files. */ | ||
"forceConsistentCasingInFileNames": true, /* Disallow inconsistently-cased references to the same file. */ | ||
"strict": true /* Enable all strict type-checking options. */, | ||
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */, | ||
"skipLibCheck": true /* Skip type checking of declaration files. */, | ||
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */, | ||
"moduleResolution": "node", | ||
"baseUrl": "./src", | ||
"paths": { | ||
"@bravura": ["fonts/loadStatic"], | ||
"@gonville": ["fonts/loadStatic"], | ||
"@petaluma": ["fonts/loadStatic"], | ||
"@custom": ["fonts/loadStatic"] | ||
}, | ||
} | ||
}, | ||
"exclude": ["./src/fonts/legacy", "./releases", "./reference"] | ||
"exclude": ["./tools/fonts/legacy", "./releases", "./reference"] | ||
} |