Skip to content

Commit ccea423

Browse files
committed
Create tsconfig.json
Update tsconfig.json
1 parent d81d5e7 commit ccea423

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

lib_src/tsconfig.json

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"compilerOptions": {
3+
//// Linting Options - Uncomment options to get more features (usually more restrictive)
4+
"strict": true,
5+
"strictNullChecks": true,
6+
// "forceConsistentCasingInFileNames": true,
7+
"noUnusedLocals": true,
8+
"noUnusedParameters": true,
9+
"noImplicitReturns": true,
10+
"noImplicitAny": true,
11+
"noImplicitThis": true,
12+
"noFallthroughCasesInSwitch": true,
13+
"allowJs": true,
14+
//// Compilation options
15+
"declaration": true,
16+
"emitDecoratorMetadata": true,
17+
"esModuleInterop": true,
18+
"experimentalDecorators": true,
19+
"incremental": true,
20+
// "inlineSourceMap": true,
21+
// "preserveConstEnums": true,
22+
// "sourceMap": true,
23+
"preserveSymlinks": true,
24+
// "removeComments": true,
25+
// "jsx": "react",
26+
// "jsxFactory": "etch.dom",
27+
"lib": ["ES2018", "dom"],
28+
"target": "ES2018",
29+
"module": "commonjs",
30+
"moduleResolution": "node",
31+
// "noLib": false,
32+
// "importHelpers": true, // if true you should add tslib to deps
33+
// "skipLibCheck": false,
34+
35+
"outDir": "../lib",
36+
"files" : ["ui/selector.ts"]
37+
},
38+
"compileOnSave": true
39+
}

0 commit comments

Comments
 (0)