- Update the `stackblitz.json` config files (used for generating Stackblitz projects and ZIP archives) to include the correct files (taking into account the current layout of the example projects). - Update the boilerplate files for `testing` examples to match the current layout of the example projects. PR Close #31937
27 lines
473 B
JSON
27 lines
473 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "../out-tsc/app",
|
|
"types": []
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"src/test.ts",
|
|
"src/**/*.spec.ts",
|
|
"src/**/*-specs.ts",
|
|
"src/**/*.avoid.ts",
|
|
"src/**/*.0.ts",
|
|
"src/**/*.1.ts",
|
|
"src/**/*.1b.ts",
|
|
"src/**/*.2.ts",
|
|
"src/**/*.3.ts",
|
|
"src/**/*.4.ts",
|
|
"src/**/*.5.ts",
|
|
"src/**/*.6.ts",
|
|
"src/**/*.7.ts",
|
|
"src/**/testing"
|
|
]
|
|
}
|