mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
* chore(dependencies): update the lock file * refactor(): exported all types we're cool with exporting, updated types to be referenced from the src/index.d.ts file instead of local .ts files to prevent hard linking of files together * chore(build): add tsc task to typecheck code * chore(action-sheet-controller): fix import style * fix(): removed unneeded dom controller reference and removed component element reference.
34 lines
693 B
JSON
34 lines
693 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowUnreachableCode": false,
|
|
"alwaysStrict": true,
|
|
"experimentalDecorators": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"jsx": "react",
|
|
"jsxFactory": "h",
|
|
"lib": [
|
|
"dom",
|
|
"es2015"
|
|
],
|
|
"module": "es2015",
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"outDir": ".tmp",
|
|
"pretty": true,
|
|
"removeComments": false,
|
|
"target": "es2015"
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|