Files
pyscript/pyscriptjs/tsconfig.json
2022-10-25 14:49:53 -05:00

23 lines
499 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"_version": "3.0.0",
"include": ["src/**/*"],
"exclude": ["node_modules/*", "__sapper__/*", "public/*"],
"compilerOptions": {
"moduleResolution": "node",
"target": "ES2020",
"module": "ES2020",
"types": ["jest", "node"],
"strict": false,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"lib": [
"es2017",
"dom",
"DOM.Iterable"
]
}
}