1234567891011121314151617181920212223242526272829 |
- {
- "compilerOptions": {
- "module": "commonjs",
- "target": "ES2015",
- "lib": [
- "ScriptHost",
- "DOM",
- "ES2015",
- "ES2016",
- "ES2017",
- "ES2018",
- "ES2019",
- "ES2020",
- "ES2021",
- "ESNext"
- ],
- "rootDir": "./",
- "outDir": "lib",
- "declaration": true,
- "declarationDir": "./lib",
- "declarationMap": true,
- "sourceMap": true,
- "resolveJsonModule": true,
- "types": ["jest", "node", "@types/jest", "@types/offscreencanvas"],
- "typeRoots" : ["./src/define"],
- "downlevelIteration": true,
- "experimentalDecorators": true
- }
- }
|