Moved webpack-env to separate folder (#11684)

This commit is contained in:
use-strict
2016-10-03 23:15:45 +03:00
committed by Mohamed Hegazy
parent e5078805b1
commit 50f20d7af5
4 changed files with 19 additions and 1 deletions

19
webpack-env/tsconfig.json Normal file
View File

@@ -0,0 +1,19 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"noImplicitAny": true,
"strictNullChecks": false,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"webpack-env-tests.ts"
]
}

View File

@@ -14,7 +14,6 @@
},
"files": [
"index.d.ts",
"webpack-env.d.ts",
"webpack-tests.ts"
]
}