theatre/compat-tests/tsconfig.json

20 lines
374 B
JSON
Raw Normal View History

{
"compilerOptions": {
"outDir": "dist",
"lib": ["ESNext", "DOM"],
"rootDir": ".",
"types": ["jest", "node"],
"target": "es6",
"noEmit": true,
"composite": true,
"moduleResolution": "node",
"skipLibCheck": true
},
"include": [
"./scripts/*.ts",
"./*.compat-test.ts",
"./**/*.compat-test.ts",
"./utils/**/*.ts"
]
}