mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 04:14:21 +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
|
||||
|
||||
.idea/
|
||||
.vscode/
|
||||
.sass-cache/
|
||||
.versions/
|
||||
coverage/
|
||||
@ -21,12 +22,9 @@ $RECYCLE.BIN/
|
||||
Thumbs.db
|
||||
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
|
||||
|
||||
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
|
||||
|
||||
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.*.scss'
|
||||
- 'src/util/*.scss'
|
||||
- 'src/components/slides/**'
|
||||
- 'src/themes/ionic.mixins.scss'
|
||||
- 'src/themes/license.scss'
|
||||
- 'src/themes/util.scss'
|
||||
- 'src/platform/cordova.*.scss'
|
||||
|
||||
|
||||
|
@ -1,26 +1,23 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"allowUnreachableCode": false,
|
||||
"declaration": true,
|
||||
"emitDecoratorMetadata": true,
|
||||
"experimentalDecorators": true,
|
||||
"target": "es5",
|
||||
"lib": ["dom", "es2015"],
|
||||
"module": "commonjs",
|
||||
"declaration": true,
|
||||
"outDir": "dist",
|
||||
"noImplicitAny": true
|
||||
"moduleResolution": "node",
|
||||
"noImplicitAny": false,
|
||||
"removeComments": true,
|
||||
"target": "es5",
|
||||
"types": ["jasmine", "protractor"]
|
||||
},
|
||||
"filesGlob": [
|
||||
"src/**/*.ts",
|
||||
"!node_modules/**/*"
|
||||
],
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"scripts",
|
||||
"typings/main",
|
||||
"typings/main.d.ts"
|
||||
"include": [
|
||||
"./src/**/*.ts"
|
||||
],
|
||||
"compileOnSave": false,
|
||||
"buildOnSave": false,
|
||||
"atom": {
|
||||
"rewriteTsconfig": false
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user