mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 12:29:55 +08:00
chore(tsconfig): tsconfig updates
This commit is contained in:

committed by
Adam Bradley

parent
bf2b6abac5
commit
0d55e3c417
14
.gitignore
vendored
14
.gitignore
vendored
@ -8,6 +8,7 @@ log.txt
|
|||||||
*.sublime-workspace
|
*.sublime-workspace
|
||||||
|
|
||||||
.idea/
|
.idea/
|
||||||
|
.vscode/
|
||||||
.sass-cache/
|
.sass-cache/
|
||||||
.versions/
|
.versions/
|
||||||
coverage/
|
coverage/
|
||||||
@ -21,12 +22,9 @@ $RECYCLE.BIN/
|
|||||||
Thumbs.db
|
Thumbs.db
|
||||||
UserInterfaceState.xcuserstate
|
UserInterfaceState.xcuserstate
|
||||||
|
|
||||||
scripts/resources/web-animations-js/test/
|
|
||||||
scripts/resources/web-animations-js/inter-*
|
|
||||||
scripts/resources/web-animations-js/**/*.map
|
|
||||||
scripts/resources/web-animations-js/**/*.md
|
|
||||||
scripts/resources/web-animations-js/**/*.sh
|
|
||||||
scripts/resources/web-animations-js/**/*.yml
|
|
||||||
scripts/resources/web-animations-js/**/*.gz
|
|
||||||
|
|
||||||
.package.tmp.json
|
.package.tmp.json
|
||||||
|
|
||||||
|
src/themes/version.scss
|
||||||
|
scripts/e2e/webpackEntryPoints.json
|
||||||
|
scripts/build/e2e-generated-tsconfig.json
|
||||||
|
*.css.ts
|
@ -3,10 +3,14 @@
|
|||||||
# See config at https://github.com/brigade/scss-lint/blob/master/config/default.yml
|
# See config at https://github.com/brigade/scss-lint/blob/master/config/default.yml
|
||||||
|
|
||||||
exclude:
|
exclude:
|
||||||
- 'src/components/slides/**'
|
- 'src/components/item/item.ios.scss'
|
||||||
|
- 'src/components/item/item.md.scss'
|
||||||
|
- 'src/components/list/list.ios.scss'
|
||||||
- 'src/components/show-hide-when/**'
|
- 'src/components/show-hide-when/**'
|
||||||
- 'src/components.*.scss'
|
- 'src/components/slides/**'
|
||||||
- 'src/util/*.scss'
|
- 'src/themes/ionic.mixins.scss'
|
||||||
|
- 'src/themes/license.scss'
|
||||||
|
- 'src/themes/util.scss'
|
||||||
- 'src/platform/cordova.*.scss'
|
- 'src/platform/cordova.*.scss'
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,22 +1,19 @@
|
|||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
|
"allowUnreachableCode": false,
|
||||||
|
"declaration": true,
|
||||||
"emitDecoratorMetadata": true,
|
"emitDecoratorMetadata": true,
|
||||||
"experimentalDecorators": true,
|
"experimentalDecorators": true,
|
||||||
"target": "es5",
|
"lib": ["dom", "es2015"],
|
||||||
"module": "commonjs",
|
"module": "commonjs",
|
||||||
"declaration": true,
|
"moduleResolution": "node",
|
||||||
"outDir": "dist",
|
"noImplicitAny": false,
|
||||||
"noImplicitAny": true
|
"removeComments": true,
|
||||||
|
"target": "es5",
|
||||||
|
"types": ["jasmine", "protractor"]
|
||||||
},
|
},
|
||||||
"filesGlob": [
|
"include": [
|
||||||
"src/**/*.ts",
|
"./src/**/*.ts"
|
||||||
"!node_modules/**/*"
|
|
||||||
],
|
|
||||||
"exclude": [
|
|
||||||
"node_modules",
|
|
||||||
"scripts",
|
|
||||||
"typings/main",
|
|
||||||
"typings/main.d.ts"
|
|
||||||
],
|
],
|
||||||
"compileOnSave": false,
|
"compileOnSave": false,
|
||||||
"buildOnSave": false,
|
"buildOnSave": false,
|
||||||
|
Reference in New Issue
Block a user