Files
komodo/cli/tsconfig.json
2022-03-19 02:33:18 -07:00

20 lines
334 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"lib": [
"ESNext"
],
"module": "ESNext",
"jsx": "react",
"moduleResolution": "node",
"target": "ESNext",
"strict": true,
"esModuleInterop": true,
"allowJs": true,
"noImplicitAny": false,
"noEmit": true
},
"include": [
"src"
]
}