forked from TypeStrong/typedoc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
35 lines (35 loc) · 823 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
{
"compilerOptions": {
"module": "commonjs",
"lib": [
"dom",
"es5",
"es2015.core",
"es2015.collection",
"es2015.iterable",
"es2016.array.include" // Supported by Node 6+
],
"target": "es2015",
"noImplicitAny": false,
"downlevelIteration": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"removeComments": true,
"noUnusedLocals": true,
"preserveConstEnums": true,
"declaration": true,
"sourceMap": true,
"inlineSources": true, // Required for debugging NPM published package.
"outDir": "dist/",
"rootDir": "src/",
"experimentalDecorators": true,
"newLine": "LF"
},
"include": [
"src/**/*.ts"
],
"exclude": [
"src/test/converter/**/*.ts"
]
}