bitburner-src/tsconfig.json

19 lines
405 B
JSON
Raw Normal View History

{
2021-09-10 06:13:03 +02:00
"compilerOptions": {
"baseUrl": ".",
"esModuleInterop": true,
"isolatedModules": true,
"jsx": "react",
"module": "commonjs",
"noEmit": true,
"resolveJsonModule": true,
"skipLibCheck": true,
2021-09-10 06:13:03 +02:00
"sourceMap": true,
"strict": true,
"target": "es2019",
"types": ["jest", "node"]
2021-09-10 06:13:03 +02:00
},
"include": ["src/**/*", "test/**/*"],
"exclude": ["test/cypress/**/*"]
}