- 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
20 lines
290 B
JSON
20 lines
290 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "../out-tsc/spec",
|
|
"types": [
|
|
"jasmine",
|
|
"node"
|
|
]
|
|
},
|
|
"files": [
|
|
"src/test.ts",
|
|
"src/polyfills.ts"
|
|
],
|
|
"include": [
|
|
"src/**/*.spec.ts",
|
|
"src/**/*.d.ts",
|
|
"src/testing"
|
|
]
|
|
}
|