File size: 498 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
{
"compilerOptions": {
"noEmit": true,
"rootDir": ".",
"allowJs": true,
"checkJs": true,
"lib": ["ESNext", "DOM"],
"skipLibCheck": true,
"strict": true,
"jsx": "preserve",
"target": "ESNext",
"esModuleInterop": true,
"module": "Preserve",
"moduleResolution": "bundler",
"moduleDetection": "force"
},
"files": ["./index.ts"], // loads ambient declarations for modules used in tests
"include": ["./**/*/input.js", "./**/*/output.js"]
}
|