UNPKG

597 BJSONView Raw
1{
2 "compilerOptions": {
3 "target": "ES3",
4 "noImplicitAny": true,
5 "strictBindCallApply": true,
6 "removeComments": true,
7 "sourceMap": false,
8
9 "noImplicitThis": true,
10
11 // https://github.com/ezolenko/rollup-plugin-typescript2/issues/12#issuecomment-536173372
12 "moduleResolution": "Node",
13
14 "declaration": true,
15 "declarationMap": false,
16
17 // Compile to lib
18 "rootDir": "src",
19
20 "importHelpers": true,
21
22 "pretty": true
23 },
24 "include": [
25 "src/**/*.ts"
26 ],
27 "exclude": [
28 ]
29}
\No newline at end of file