mirror of
https://github.com/bendtherules/ask262.git
synced 2026-08-18 21:31:46 +00:00
19 lines
481 B
JSON
19 lines
481 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext",
|
|
"types": ["bun-types"],
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"noEmitOnError": true,
|
|
"resolveJsonModule": true,
|
|
"outDir": "./dist",
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"include": ["**/*.ts"],
|
|
"exclude": ["node_modules", "dist", "engine262", "spec-built"]
|
|
}
|