-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
36 lines (31 loc) · 1 KB
/
Copy pathtsconfig.json
File metadata and controls
36 lines (31 loc) · 1 KB
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
{
"compilerOptions": {
// Project's typechecking options
"strict": true,
"strictPropertyInitialization": false,
// These options support running tsx + ts-node
"module": "Node16",
"moduleResolution": "Node16",
"target": "es2021",
"lib": ["es2021", "DOM"],
"experimentalDecorators": true,
"useDefineForClassFields": false,
// required to import ".ts" files (for ts-node/esm, deno, and VSCode)
"allowImportingTsExtensions": true,
// required for allowImportingTsExtensions to work w/VSCode; pkgroll
// doesn't work with emitDeclarationOnly, but works ok with noEmit)
"noEmit": true,
// Don't document internals
"stripInternal": true,
"newLine": "lf"
},
"ts-node": {
"esm": true,
"transpileOnly": true,
"experimentalSpecifierResolution": "node"
},
"exclude": ["./specs/*"],
"include": [
"./src/*.ts", "./specs/*.ts",
]
}