├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── SECURITY.md ├── package.json ├── src ├── tsconfig.spec.ts └── tsconfig.ts ├── tests ├── bom │ └── tsconfig.json ├── cwd │ └── tsconfig.json ├── empty │ └── tsconfig.json ├── find │ ├── tsconfig.json │ └── up │ │ └── config │ │ └── .gitkeep ├── invalidfile │ └── tsconfig.json ├── missing │ └── .gitkeep └── valid │ └── tsconfig.json ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/tsconfig/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | coverage/ 3 | dist/ 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/tsconfig/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/tsconfig/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/tsconfig/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/tsconfig/HEAD/SECURITY.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/tsconfig/HEAD/package.json -------------------------------------------------------------------------------- /src/tsconfig.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/tsconfig/HEAD/src/tsconfig.spec.ts -------------------------------------------------------------------------------- /src/tsconfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/tsconfig/HEAD/src/tsconfig.ts -------------------------------------------------------------------------------- /tests/bom/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/tsconfig/HEAD/tests/bom/tsconfig.json -------------------------------------------------------------------------------- /tests/cwd/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/tsconfig/HEAD/tests/cwd/tsconfig.json -------------------------------------------------------------------------------- /tests/empty/tsconfig.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/find/tsconfig.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/find/up/config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/invalidfile/tsconfig.json: -------------------------------------------------------------------------------- 1 | some random string -------------------------------------------------------------------------------- /tests/missing/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/valid/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/tsconfig/HEAD/tests/valid/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/tsconfig/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "tslint-config-standard" 3 | } 4 | --------------------------------------------------------------------------------