提交 a6df9576 编写于 作者: M Michael Bürge 提交者: Michael Bürge

Move tsconfig.lint.json to utils/build/

上级 de3622c6
......@@ -50,7 +50,7 @@
"dev": "concurrently --names \"ROLLUP,HTTP\" -c \"bgBlue.bold,bgGreen.bold\" \"rollup -c -w -m inline\" \"http-server -c-1 -p 8080\"",
"dev-test": "concurrently --names \"ROLLUP,ROLLUPTEST,HTTP\" -c \"bgBlue.bold,bgRed.bold,bgGreen.bold\" \"rollup -c -w -m inline\" \"rollup -c test/rollup.unit.config.js -w -m inline\" \"http-server -p 8080\"",
"start": "npm run dev",
"lint": "eslint src --ext js --ext ts && tsc -p tsconfig.lint.json",
"lint": "eslint src --ext js --ext ts && tsc -p utils/build/tsconfig.lint.json",
"test": "npm run build-test && qunit -r failonlyreporter test/unit/three.source.unit.js",
"travis": "npm run lint && npm test"
},
......
{
"compilerOptions": {
"noEmit": true,
},
// NOTE (from https://www.typescriptlang.org/docs/handbook/tsconfig-json.html):
// 'If the "files" and "include" are both left unspecified, the compiler defaults to including
// all TypeScript (.ts, .d.ts and .tsx) files in the containing directory and subdirectories ...'
}
{
"compilerOptions": {
"noEmit": true,
},
"include": [
"../../**/*.ts"
]
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册