123456789101112131415161718192021222324 |
- {
- "compilerOptions": {
- "module": "commonjs",
- "target": "ES2015",
- "lib": [
- "ScriptHost",
- "DOM",
- "ES2015",
- "ES2016",
- "ES2017",
- "ES2018",
- "ES2019",
- "ES2020",
- "ES2021",
- "ESNext"
- ],
- "types": ["jest", "node", "@types/jest"],
- "sourceMap": true,
- "typeRoots" : ["./src/define"],
- "downlevelIteration": true,
- "esModuleInterop": true,
- "experimentalDecorators": true
- }
- }
|