2020-02-15 11:23:08 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES3",
|
|
|
|
|
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"noImplicitThis": true,
|
|
|
|
|
"strictBindCallApply": true,
|
2021-01-19 14:26:46 +08:00
|
|
|
"removeComments": false,
|
2020-02-15 11:23:08 +08:00
|
|
|
"sourceMap": true,
|
|
|
|
|
|
|
|
|
|
// https://github.com/ezolenko/rollup-plugin-typescript2/issues/12#issuecomment-536173372
|
2020-07-28 12:14:09 +08:00
|
|
|
"moduleResolution": "node",
|
2020-02-15 11:23:08 +08:00
|
|
|
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": false,
|
|
|
|
|
|
2020-02-17 20:28:52 +08:00
|
|
|
"importHelpers": true,
|
|
|
|
|
|
2020-03-11 22:06:12 +08:00
|
|
|
"pretty": true,
|
|
|
|
|
|
|
|
|
|
"outDir": "lib"
|
2020-02-15 11:23:08 +08:00
|
|
|
},
|
|
|
|
|
"include": [
|
|
|
|
|
"src/**/*.ts",
|
2020-11-19 01:25:11 +08:00
|
|
|
"extension-src/**/*.ts",
|
2024-01-22 12:39:52 +08:00
|
|
|
"ssr/client/**/*.ts",
|
2020-11-19 01:25:11 +08:00
|
|
|
"test/lib/myTransform/src/**/*.ts"
|
2020-02-15 11:23:08 +08:00
|
|
|
]
|
|
|
|
|
}
|