Skip to content

Commit 1893fa0

Browse files
committed
Create tsconfig.json
1 parent f69d050 commit 1893fa0

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

lib_src/tsconfig.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"compilerOptions": {
3+
//// Linting Options - Uncomment options to get more features (usually more restrictive)
4+
// "strict": true, // includes all of the following and more
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+
},
37+
"compileOnSave": true
38+
}

0 commit comments

Comments
 (0)