Skip to content

Commit

Permalink
Update exclude path for legacy fonts.
Browse files Browse the repository at this point in the history
Remove glyphs.html because the updated one was introduced in a
different PR.
  • Loading branch information
ronyeh committed Nov 1, 2021
1 parent bdd4bbb commit 18ee0ad
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 144 deletions.
122 changes: 0 additions & 122 deletions src/fonts/legacy/glyphs.html

This file was deleted.

22 changes: 11 additions & 11 deletions tsconfig.dynamic.json
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"]
}
22 changes: 11 additions & 11 deletions tsconfig.json
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"]
}

0 comments on commit 18ee0ad

Please sign in to comment.