2020-12-09 17:09:44 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": ".",
|
|
|
|
"outDir": "dist",
|
|
|
|
"sourceMap": false,
|
2021-01-02 11:16:56 +08:00
|
|
|
"target": "es5",
|
2020-12-09 17:09:44 +08:00
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"allowJs": false,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"removeComments": false,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"lib": ["esnext", "dom"],
|
2021-01-14 18:07:28 +08:00
|
|
|
// "types": ["jest", "node"],
|
2020-12-09 17:09:44 +08:00
|
|
|
"rootDir": ".",
|
|
|
|
// "paths": {
|
|
|
|
// "@vue/*": ["packages/*/src"]
|
2021-01-14 18:07:28 +08:00
|
|
|
// },
|
|
|
|
"paths": {
|
|
|
|
"cnchar": ["src/cnchar/main"],
|
|
|
|
"cnchar-types": ["src/cnchar-types"],
|
|
|
|
"@cnchar-plugin/*": ["src/cnchar/plugin/*"],
|
|
|
|
"@testUtils":["testUtils"]
|
|
|
|
}
|
2020-12-09 17:09:44 +08:00
|
|
|
},
|
|
|
|
"include": [
|
2021-01-14 18:07:28 +08:00
|
|
|
"testUtils",
|
2020-12-16 17:31:41 +08:00
|
|
|
"./src/**/*"
|
|
|
|
],
|
2020-12-09 17:09:44 +08:00
|
|
|
"exclude": [
|
|
|
|
"./node_modules"
|
|
|
|
]
|
|
|
|
}
|