Skip to content

Commit

Permalink
Update tsconfig.json structure for IDE
Browse files Browse the repository at this point in the history
  • Loading branch information
cocopon committed Jul 12, 2021
1 parent 55d2c57 commit 7d9293d
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 20 deletions.
9 changes: 2 additions & 7 deletions packages/core/src/tsconfig-es6.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,9 @@
{
"extends": "../../../tsconfig.json",
"compilerOptions": {
"declaration": true,
"lib": ["DOM", "ES2015"],
"moduleResolution": "Node",
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "../dist/es6",
"strict": true,
"target": "ES6"
"outDir": "../dist/es6"
},
"exclude": ["**/*-test.ts"]
}
7 changes: 1 addition & 6 deletions packages/tweakpane/src/doc/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
{
"extends": "../../../../tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
"lib": ["DOM", "ES2015"],
"moduleResolution": "Node",
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true,
"target": "ES6",
"paths": {
"tweakpane": ["../../lib/index"]
}
Expand Down
9 changes: 2 additions & 7 deletions packages/tweakpane/src/main/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
{
"extends": "../../../../tsconfig.json",
"compilerOptions": {
"lib": ["DOM", "ES2015"],
"moduleResolution": "Node",
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true,
"target": "ES6"
"moduleResolution": "Node"
},
"exclude": ["**/*-test.ts"]
}
10 changes: 10 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"compilerOptions": {
"lib": ["DOM", "ES2015"],
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true,
"target": "ES6"
}
}

0 comments on commit 7d9293d

Please sign in to comment.