Files
ionic-framework/react/tsconfig.json
Josh Thomas d9aa318aa4 tests(react): create tests for the react bindings to core (#17551)
* Add tests.

* updates after API meeting.

* test(): add tests for create controller components.

* correct testing for controller component

* Ensure tests properly cleanup after each run.

* create common test utils for overlay and controllers.

* initial tests for ion router outlet

* simple update.

* add mocks for jest tests.
2019-02-20 15:35:20 -06:00

32 lines
704 B
JSON

{
"compilerOptions": {
"allowUnreachableCode": false,
"allowSyntheticDefaultImports": true,
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"lib": ["dom", "es2015"],
"module": "es2015",
"moduleResolution": "node",
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "dist",
"removeComments": false,
"sourceMap": true,
"jsx": "react",
"target": "es2015"
},
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"exclude": [
"**/__tests__/**"
],
"compileOnSave": false,
"buildOnSave": false
}