bitburner-src/tsconfig.json

16 lines
360 B
JSON
Raw Normal View History

{
2021-09-05 01:09:30 +02:00
"compilerOptions": {
"baseUrl": ".",
"esModuleInterop": true,
"isolatedModules": true,
2021-09-05 01:09:30 +02:00
"jsx": "react",
"lib": ["es2016", "dom", "es2017.object", "es2019"],
"module": "commonjs",
"target": "es6",
"sourceMap": true,
"strict": true,
"types": ["cypress", "@testing-library/cypress"]
2021-09-05 01:09:30 +02:00
},
"exclude": ["node_modules"]
}