UNPKG

623 BJSONView Raw
1{
2 "compilerOptions": {
3 "target": "ES3",
4
5 "noImplicitAny": true,
6 "noImplicitThis": true,
7 "strictBindCallApply": true,
8 "removeComments": false,
9 "sourceMap": 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 "importHelpers": true,
18
19 "pretty": true,
20
21 "outDir": "lib"
22 },
23 "include": [
24 "src/**/*.ts",
25 "extension-src/**/*.ts",
26 "test/lib/myTransform/src/**/*.ts"
27 ]
28}
\No newline at end of file