Separate tsconfig.json so that ts-node can work with gulpfile.ts
This commit is contained in:
parent
3fc6aef313
commit
314ff6777a
5 changed files with 66 additions and 49 deletions
23
src/tsconfig.json
Normal file
23
src/tsconfig.json
Normal file
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"noEmitOnError": false,
|
||||
"noImplicitAny": false,
|
||||
"noImplicitReturns": true,
|
||||
"noUnusedParameters": false,
|
||||
"noUnusedLocals": true,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"declaration": false,
|
||||
"sourceMap": false,
|
||||
"target": "es6",
|
||||
"module": "commonjs",
|
||||
"removeComments": false,
|
||||
"noLib": false
|
||||
},
|
||||
"compileOnSave": false,
|
||||
"include": [
|
||||
"./**/*.ts"
|
||||
],
|
||||
"exclude": [
|
||||
"./web/app/**/*.ts"
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue