20 lines
368 B
JSON
20 lines
368 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"noEmit": false,
|
|
"outDir": "./.tmp-runtime-smoke",
|
|
"rootDir": ".",
|
|
"module": "CommonJS",
|
|
"target": "ES2020"
|
|
},
|
|
"include": [
|
|
"./miniprogram/**/*.ts",
|
|
"./tools/runtime-smoke-test.ts",
|
|
"./typings/**/*.d.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
".tmp-runtime-smoke"
|
|
]
|
|
}
|