-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
38 lines (33 loc) · 938 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"compilerOptions": {
"checkJs": true,
"noEmit": true,
// if you'd like to warn if you're using modern features, change these
// both to e.g., "es2017"
"module": "NodeNext",
"target": "ESNext",
"moduleResolution": "NodeNext",
// proper es6 support
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
// configure as you like: these are my preferred defaults!
"strict": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
// "strict" implies this, and it's good for new projects, but difficult to retrofit to old
// untyped projects
"noImplicitAny": true,
// modern TS stuff that allows lit-element to work
"experimentalDecorators": true,
"useDefineForClassFields": false,
"allowImportingTsExtensions": true,
},
"include": [
"*.js",
"**/*.js",
"*.ts",
"**/*.ts",
"*.tsx",
"**/*.tsx",
],
}