mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-25 12:01:07 -05:00
23 lines
499 B
JSON
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"
|
|
]
|
|
}
|
|
}
|