This repository has been archived on 2026-03-01. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
www/tsconfig.json

16 lines
343 B
JSON
Raw Normal View History

2022-03-29 07:55:55 -05:00
{
"compilerOptions": {
"target": "es2022",
"module": "commonjs",
"declaration": true,
"outDir": "./lib",
"strict": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"lib": ["esnext", "dom", "dom.iterable"],
2024-06-30 13:46:11 -04:00
"preserveSymlinks": true
},
"include": ["src"]
2022-03-29 07:55:55 -05:00
}